20 lines
381 B
Objective-C
20 lines
381 B
Objective-C
//
|
|
// UMComWebViewController.h
|
|
// UMCommunity
|
|
//
|
|
// Created by Gavin Ye on 8/19/15.
|
|
// Copyright (c) 2015 Umeng. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UMComViewController.h"
|
|
|
|
@interface UMComWebViewController : UMComViewController<UIWebViewDelegate,
|
|
NSURLConnectionDelegate,NSURLConnectionDataDelegate>
|
|
|
|
- (instancetype)initWithUrl:(NSString *)url;
|
|
|
|
|
|
|
|
@end
|