详细情况
@interface detailVideo : UIViewController {
IBOutlet UIWebView *webview;
NSString *urlAddress;
}
@property(nonatomic,retain)NSString *urlAddress;
@end
detailVideo.m
- (void)viewDidLoad {
NSString *reqUrl = urlAddress;
//Create a URL object.
NSURL *url = [NSURL URLWithString:reqUrl];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webview loadRequest:requestObj];
// webView.opaque = NO;
webview.delegate = self;
} The video is working fine.But if i click the Done button,it redircts some other page which consists Replay button.I want switch back from this view?
如何做?