// // RBSearchUserCell.h // RobloxMobile // // Created by Kyler Mulherin on 1/14/15. // Copyright (c) 2015 ROBLOX. All rights reserved. // #include #include "RobloxImageView.h" #include "RobloxData.h" @interface RBSearchUserCell : UICollectionViewCell //cell visual elements @property IBOutlet UILabel* lblName; @property IBOutlet UITextView* lblBlurb; @property IBOutlet UITextView* lblOtherNames; @property IBOutlet UILabel* lblOtherNamesWord; @property IBOutlet RobloxImageView* imgAvatar; @property IBOutlet UIImageView* imgIsOnline; //data values @property (strong, nonatomic) RBXUserSearchInfo* searchInfo; + (CGSize) getCellSize; + (NSString*) getNibName; -(void) setInfo:(RBXUserSearchInfo *)searchInfo; @end