mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
31 lines
924 B
Objective-C
31 lines
924 B
Objective-C
//
|
|
// 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
|