2013-02-01から1ヶ月間の記事一覧

Cannot create an NSPersistentStoreCoordinator with a nil model

普通に.xcdatamodeldファイルのパスが xcodeで通っていなかった...。他にも以下に対処法があります。 http://www.kuma-de.com/blog/2012-09-27/4092

UISearchBarのscopeBar(検索バーの選択ボタン)を使うとき。

UISearchBar *_searchBar = [[UISearchBar alloc]init]; _searchBar.frame = CGRectMake(0, 0, self.tableView.bounds.size.width,0); _searchBar.delegate = self; _searchBar.tintColor = [UIColor darkGrayColor]; _searchBar.translucent = YES; _search…

Apple LLVM Compiler 4.2 Error出たとき。

Apple LLVM Compiler 4.2 Error出たとき、Xcode上で、ファイルのパスが通っていない 可能性があります。例えば、 Xcode外でファイルの位置を移動したり、 ファイルが削除されているなどが考えられます。ファイルが赤い文字になって、 幽霊のように出現してい…

How to Get Current ViewController (mainly, modalViewController)

UINavigationController Class has property "modalViewController",(Deprecated in iOS 6.0)and property "presentedViewController" (iOS 5.0 and later)To get current view, you can use these properties.refer the link below: Getting Other Related…

UITextViewの高さを調整する。

UITextViewにテキストをセットして、 そのテキストのフォントの大きさ、テキストの長さに合わせて テキストビューの高さを調整する方法です。以下にそのコードを示します。 NSString *statusesText = "Hello World"; UITextView *textView = UITextView allo…

Web上の画像の高さ、幅を取得する。

iOSアプリで、Web上から画像を取得してきます。 そのときに画像の高さと幅の値を objective-cのライブラリを使用して 取得する方法を示します。以下にそのコードを示します。 NSData *imageData = /*画像のデータ*/ UIImage *pre_image = [[UIImage alloc]in…