mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
31 lines
743 B
Objective-C
31 lines
743 B
Objective-C
//
|
|
// RBSearchUserCell.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Kyler Mulherin on 1/14/15.
|
|
// Copyright (c) 2015 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#include <UIKit/UIKit.h>
|
|
#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
|