The Pragmatic Ball boy

iOSを中心にやってる万年球拾いの老害エンジニアメモ

2012-10-01から1ヶ月間の記事一覧

CoreDataのデータを全て削除

(BOOL)resetDatastore{ [[self managedObjectContext] lock]; [[self managedObjectContext] reset]; NSPersistentStore *store = [[[self persistentStoreCoordinator] persistentStores] lastObject]; BOOL resetOk = NO; if (store) { NSURL *storeUrl = …

半透明のviewを重ねる

半透明のviewの上にviewを以下のように重ねると子のviewのalphaも親のalphaに引きづられてしまい、子のviewのalphaを1.0に設定してもどちらも半透明になってしまう。 UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100,100)]; view.alpha …

iOS6変わったとこなど

相当すぎてますが、NDAも解禁ということで、、UIViewControllerでメソッドがDeprecateされたhttp://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/DeprecationAppendix/AppendixADeprecatedAPI.htmlmodalView系が…