2014-01-20から1日間の記事一覧

iOS データ保護(Data Protection)

http://cocoadays.blogspot.jp/2011/04/ios-data-protection.html データ保護。

ios7でundeclared selector警告が出る場合の対応

SEL setErrorSelector = sel_registerName("setError:"); if([self respondsToSelector:setErrorSelector]) { [self performSelector:setErrorSelector withObject:[NSError errorWithDomain:@"SomeDomain" code:1 userInfo:nil]]; } 一度SELに登録し使用す…

メソッドの遅延実行

http://www.objectivec-iphone.com/foundation/Class/performeSelector.html 画面表示時にローディング画面を表示し、その後時間の掛かる処理をする場合。