私はカスタムクラスを作成しました.UIWebViewをプログラムでロードするためのshowBlock.hとshowBlock.mのファイルは、showBlock.mの実装です
#import "showBlock.h"
@implementation showBlock;
@synthesize mainViewContObj;
- (void) showView {
UIWebView *aWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)];
aWebView.autoresizesSubviews = YES;
aWebView.autoresizingMask = (UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);
[aWebView setDelegate:[self mainViewContObj]];
NSString *urlAddress = @"http://localhost/test/index.php";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[aWebView loadRequest:requestObj];
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
[[[self mainViewContObj] view] addSubview:aWebView];
}
@end
それは正常に動作しており、html コンテンツを含む index.php ファイルをロードしていますが、この html ファイルのリンクをサファリブラウザで開きたいのですが、そのためには何が必要ですか?