Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
CardCell.h
Go to the documentation of this file.
1 //
2 // CardCellCell.h
3 // socioville
4 //
5 // Created by Tope on 17/04/2012.
6 // Copyright (c) 2012 Universitatea BabeČ™-Bolyai. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 //#import "NewsObjectPhoto.h"
11 #import "NewsLoader.h"
12 
13 
14 @interface CardCell : UITableViewCell
15 
16 @property (nonatomic, weak) IBOutlet UIImageView* playImageView;
17 
18 @property (nonatomic, weak) IBOutlet UIButton* commentButton;
19 
20 @property (nonatomic, weak) IBOutlet UIButton* likeButton;
21 
22 @property (nonatomic, weak) IBOutlet UILabel *label;
23 
24 @property (nonatomic, strong) IBOutlet UIImageView *majorImage;
25 
26 @property (nonatomic, weak) IBOutlet UIImageView *userPic;
27 
28 @property (nonatomic, weak) IBOutlet UIActivityIndicatorView *littleWheel;
29 
30 //-(void)setLabelText:(NSString *)label withUserPic: (UIImage*)pic andMajorImage: (UIImage*)mPic;
31 
32 -(id)initWithNews:(id)news;
33 
34 @end