/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
iOS/RobloxUI/Source/Components/RBSearchUserCell.h
30 строк
743 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// // 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