-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewFullArticle.h
More file actions
40 lines (33 loc) · 1.1 KB
/
ViewFullArticle.h
File metadata and controls
40 lines (33 loc) · 1.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
30
31
32
33
34
35
36
37
38
39
40
//
// ViewFullArticle.h
// WaveNews
//
// Created by GUYU XUE on 19/1/12.
// Copyright (c) 2012 Nanyang Technological University. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewFullArticle : UIViewController <UIWebViewDelegate>
{
NSDictionary *newsInfo;
NSString *fullContent;
IBOutlet UIScrollView *displayView;
IBOutlet UILabel *titleLabel;
IBOutlet UILabel *label1;
// UILabel *label2;
IBOutlet UIImageView *articleSource;
IBOutlet UIWebView *fullArticle;
IBOutlet UIImageView *articleImage;
}
@property (nonatomic, retain) NSDictionary *newsInfo;
@property (nonatomic, retain) NSString *fullContent;
@property (nonatomic, retain) UIScrollView *displayView;
@property (nonatomic, retain) UILabel *titleLabel;
@property (nonatomic, retain) UILabel *label1;
//@property (nonatomic, retain) UILabel *label2;
@property (nonatomic, retain) UIImageView *articleSource;
@property (nonatomic, retain) UIWebView *fullArticle;
@property (nonatomic, retain) UIImageView *articleImage;
-(void)configureViewPortrait;
-(void)configureViewRotate;
-(void)configureView;
@end