2011-01-01から1年間の記事一覧

UIActivityIndicatorViewが動かない。

メソッドの中で、重い処理が合ったので、 MenuViewController.h @interface MenuViewController : UIViewController { UIActivityIndicatorView *indicator; } -(void) shori; @end MenuViewController.m - (void)viewDidLoad { [super viewDidLoad]; indica…

Simulatorで加速度センサーを使う。

iPhoneのシミュレーターでは加速度センサーを使えない。 しかし、http://www.brianhpratt.net/cms/index.php?page=accsimを使うと、 シミュレーターで加速度センサーを使う事が出来るようになる。まずは、AppStoreでaccelerometer-simulator(無料) http://it…

TableViewのreloadDataで落ちる。

Webからデータを取得してリストに表示させる機能を作っているときに、落ちたので記録。 NSArrayをproperty設定した後、再読み込み時に一旦からのテーブルを見せようと、 [searchResult release]; [self.tableView reloadData]; としたら落ちた。 [searchResu…

NSFetchedResultsControllerでNSPredicateエラー

テンプレートのNavigation-Based Applicationで、 Use Coredataにチェックを入れて開始すると、 NSFetchedResultControllerを使ったアプリが出来る。これを改造して使い方を勉強しようとfetchRequestにNSPredicateを使ってみた所、 条件を変更するとエラーが…