mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 13:47:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
//
|
||||
// MessagesDetailController.h
|
||||
// RobloxMobile
|
||||
//
|
||||
// Created by Ariel Lichtin on 6/19/14.
|
||||
// Copyright (c) 2014 ROBLOX. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "RobloxData.h"
|
||||
#import "RobloxImageView.h"
|
||||
#import "RBBaseViewController.h"
|
||||
|
||||
@interface MessageCell : UITableViewCell
|
||||
@property (strong, nonatomic) IBOutlet UIImageView* unreadIndicator;
|
||||
@property (strong, nonatomic) IBOutlet RobloxImageView *playerAvatar;
|
||||
@property (strong, nonatomic) IBOutlet UILabel *playerNameLabel;
|
||||
@property (strong, nonatomic) IBOutlet UILabel *dateLabel;
|
||||
@property (strong, nonatomic) IBOutlet UILabel *messageLabel;
|
||||
@property (strong, nonatomic) RBXMessageInfo* messageData;
|
||||
@property (nonatomic) BOOL isRead;
|
||||
@end
|
||||
|
||||
@interface MessagesDetailController : RBBaseViewController
|
||||
|
||||
@property (nonatomic) RBXMessageType typeOfMessages;
|
||||
|
||||
- (void) loadData;
|
||||
- (void) refreshMessages:(UIRefreshControl*)refreshControl;
|
||||
@end
|
||||
Reference in New Issue
Block a user