【objective-c】UIWebViewでローカルにあるHTMLを表示する
xcode内にHTMLを格納して、そのHTMLをWebViewで表示する方法です。
// UIWebViewの初期化
UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.bounds];
// htmlのパスの取得(今回はsample.html)
NSString *path = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"html"];
// ファイルの読み込み
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
[self.view addSubview:webView];
iOS6からtextAlignmentで指定する値が変更になった
以前 (iOS5以下)
以前まではこんな感じです。
(UITextView*)textView.textAlignment = UITextAlignmentCenter;指定する値も以下のものでした。
•UITextAlignmentCenter
•UITextAlignmentRight
•UITextAlignmentLeft
現在 (iOS6)
現在 (iOS6)はこんな感じです。
(UITextView*)textView.textAlignment = NSTextAlignmentCenter;指定する値も以下のものを使用する必要があります。
•NSTextAlignmentCenter
•NSTextAlignmentRight
•NSTextAlignmentLeft
以前のものを指定するとエラーが出るので注意です。