Files
watrbx-game-engine/iOS/RobloxUI/Source/Components/RBSearchUserCell.h
T
2025-09-18 17:55:52 -04:00

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