-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDetailViewController.h
More file actions
29 lines (25 loc) · 1 KB
/
DetailViewController.h
File metadata and controls
29 lines (25 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// DetailViewController.h
// TwitterClient
//
// Created by Jessica Ko on 3/29/14.
// Copyright (c) 2014 Jessica Ko. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface DetailViewController : UIViewController
@property (nonatomic, strong) NSMutableDictionary *tweet;
@property (weak, nonatomic) IBOutlet UIImageView *tImage;
@property (weak, nonatomic) IBOutlet UILabel *tName;
@property (weak, nonatomic) IBOutlet UILabel *tScreenName;
@property (weak, nonatomic) IBOutlet UILabel *tContent;
@property (weak, nonatomic) IBOutlet UILabel *tTime;
@property (weak, nonatomic) IBOutlet UILabel *retweetCount;
@property (weak, nonatomic) IBOutlet UILabel *favoriteCount;
- (IBAction)onFavoriteButton:(id)sender;
- (IBAction)onRetweetButton:(id)sender;
- (IBAction)onReplyButton:(id)sender;
- (IBAction)onReply:(id)sender;
@property (weak, nonatomic) IBOutlet UIButton *favoriteButton;
@property (weak, nonatomic) IBOutlet UIButton *retweetButton;
@property (strong, nonatomic) NSMutableArray *savedTweets;
@end