This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/iOS/offlineguides/ArticleVC.h
2014-05-11 23:20:02 +08:00

16 lines
574 B
Objective-C

#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@protocol ArticleDelegate <NSObject>
-(void)selectHtmlPageUrl:(NSString *)url;
@end
@interface ArticleVC : UITableViewController <UISearchBarDelegate, UITableViewDelegate, CLLocationManagerDelegate>
@property (nonatomic, assign) id <ArticleDelegate> delegate;
@property (nonatomic, strong) NSString * currentName;
//uses on start of application
-(NSString *)getDefaultArticle;
-(NSString *)updateView:(NSString *)htmlId;
-(void)killKeyboard;
-(void)loadGuideAndPushToNavigationController:(NSString *)url;
@end