-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDetailViewController.h
More file actions
25 lines (18 loc) · 691 Bytes
/
DetailViewController.h
File metadata and controls
25 lines (18 loc) · 691 Bytes
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
//
// DetailViewController.h
// iReader-RSS
//
// Created by Julien Sarazin on 11/09/12.
// Copyright (c) 2012 Julien Sarazin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RssItem.h"
@interface DetailViewController : UIViewController <UIWebViewDelegate>
@property (strong, nonatomic) IBOutlet UIWebView *webview;
@property (strong, nonatomic) IBOutlet UIActivityIndicatorView *loader;
@property (strong, nonatomic) IBOutlet UIBarButtonItem *navigationBackButton;
@property (strong, nonatomic) IBOutlet UIBarButtonItem *navigationForwardButton;
@property RssItem* rssItem;
- (IBAction)onForwardButtonPressed:(id)sender;
- (IBAction)onBackButtonPressed:(id)sender;
@end