(BOOL)resetDatastore
{
[[self managedObjectContext] lock];
[[self managedObjectContext] reset];
NSPersistentStore *store = [[[self persistentStoreCoordinator] persistentStores] lastObject];
BOOL resetOk = NO;
if (store)
{
NSURL *storeUrl = store.URL;
NSError *error;
if ([[self persistentStoreCoordinator] removePersistentStore:store error:&error])
{
[[self persistentStoreCoordinator] release];
__persistentStoreCoordinator = nil;
[[self managedObjectContext] release];
__managedObjectContext = nil;
if (![[NSFileManager defaultManager] removeItemAtPath:storeUrl.path error:&error])
{
NSLog(@"\nresetDatastore. Error removing file of persistent store: %@",
[error localizedDescription]);
resetOk = NO;
}
else
{
//now recreate persistent store
[self persistentStoreCoordinator];
[[self managedObjectContext] unlock];
resetOk = YES;
}
}
else
{
NSLog(@"\nresetDatastore. Error removing persistent store: %@",
[error localizedDescription]);
resetOk = NO;
}
return resetOk;
}
else
{
NSLog(@"\nresetDatastore. Could not find the persistent store");
return resetOk;
}
}
2012年10月29日月曜日
CoreDataのデータを全て削除
2012年10月28日日曜日
半透明のviewを重ねる
半透明のviewの上にviewを以下のように重ねると
子のviewのalphaも親のalphaに引きづられてしまい、子のviewのalphaを1.0に設定してもどちらも半透明になってしまう。
子のviewのalphaも親のalphaに引きづられてしまい、子のviewのalphaを1.0に設定してもどちらも半透明になってしまう。
UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100,100)];
view.alpha = 0.5;
[self.navigationController.view addSubview:view];
UIView* childView = [[UIView alloc] initWithFrame:CGRectMake(25, 25, 50,50)];
childView.backgroundColor = [UIColor whiteColor];
childView.alpha = 1.0;
これを解決するにはviewではなく、background colorのUIColorのalphaを変える必要がある。
UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100,100)];
view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.5];
[self.navigationController.view addSubview:view];
UIView* childView = [[UIView alloc] initWithFrame:CGRectMake(25, 25, 50,50)];
childView.backgroundColor = [UIColor whiteColor];
2012年10月14日日曜日
iOS6変わったとこなど
相当すぎてますが、NDAも解禁ということで、、
UIViewControllerでメソッドがDeprecateされた
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/DeprecationAppendix/AppendixADeprecatedAPI.html
modalView系が他のメソッドに完全に置き換わったのと、回転系のメソッドが変わったのと、unload系が呼ばれなくなってます。
Deprecateされたメソッドとその対策
廃止:modalViewController
代替手段:presentedViewController
廃止:automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers
代替手段:shouldAutomaticallyForwardRotationMethods とshouldAutomaticallyForwardAppearanceMethods
廃止:dismissModalViewControllerAnimated:
代替手段:dismissViewControllerAnimated:completion:
廃止:presentModalViewController:animate
代替手段:presentViewController:animated:completion:
廃止:shouldAutorotateToInterfaceOrientation:
代替手段:supportedInterfaceOrientations と preferredInterfaceOrientationForPresentation をオーバーライド
Default-568h@2x.png
UIViewControllerでメソッドがDeprecateされた
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/DeprecationAppendix/AppendixADeprecatedAPI.html
modalView系が他のメソッドに完全に置き換わったのと、回転系のメソッドが変わったのと、unload系が呼ばれなくなってます。
Deprecateされたメソッドとその対策
廃止:modalViewController
代替手段:presentedViewController
廃止:automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers
代替手段:shouldAutomaticallyForwardRotationMethods とshouldAutomaticallyForwardAppearanceMethods
廃止:dismissModalViewControllerAnimated:
代替手段:dismissViewControllerAnimated:completion:
廃止:presentModalViewController:animate
代替手段:presentViewController:animated:completion:
廃止:shouldAutorotateToInterfaceOrientation:
代替手段:supportedInterfaceOrientations と preferredInterfaceOrientationForPresentation をオーバーライド
廃止:viewDidUnload
廃止:viewWillUnload
廃止:viewWillUnload
viewUnload系はメモリが少なくなった場合でも呼ばれなくなった。
view**Unloadについてはこちらによく書かれています。
view**Unloadについてはこちらによく書かれています。
回転についてはこちらなど
縦長対応
iPhone5が 640 * 1136 になったのでそれに対応せねばならない。
スプラッシュ画像の対応
以下の名前のファイルを追加すればいい
storyboardの変更
storyboardの画面右下の画面の ○ボタンを押せば画面が縦長になる
armv7sの追加
3rdParty性のライブラリを使ってたりしない限りはあまり関係ないですが、使っている場合はそのライブラリがarmv7s用のバイナリを含んでいない場合は、ビルドするときにarmv7sを消さないとだめです。
UICollectionViewが追加
データの一覧表示するのにこれまではTableViewしかなかったのが、UICollectionViewという別の表現手段が用意されました。使い方はパッと見UITableViewとかなり酷似しているのでそれほど難しくはなさそう。
UIRefreshControlが追加
引っ張って更新するのがフレームワークに導入された
これまではEGOTableViewPullRefreshさんにお世話になってましたが、iOS6からはオワコンになります。
UIRefreshControlはもちろんiOS6でしか動かないので、しばらくはまだオープンソースのほうが使われるでしょう。
NSHashTable, NSMapTable, NSPointerArray, NSPointerFunctions,とか増えた
この理解であっているかはちと怪しいが
NSHashTableはNSSetのweak reference版
NSMapTableはNSDictionaryのweak reference版
NSPointerArrayはNSArrayのweak reference版(ただしARC環境ではサポートしないと書いてある)
登録:
投稿 (Atom)