objective-c
目的の画像をmyButton.png、1x1透過pngをtransparent.pngとする。 UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"myButton"] style:UIBarButtonItemStylePlain target:aTarget action:anAction]; [item setBackgro…
Tweetのidが64ビットになってたので。 NSNumberから取り出すにはunsignedLongLongValueを使う: uint64_t tweetId = [tweetIdNumber unsignedLongLongValue]; 逆にNSNumberに変換するにはnumberWithUnsignedLongLong:もしくはinitWithUnsignedLongLong:を使う…
デフォルトでは選択されたUITabBarのタブには青い背景色が付くけど、これはselectionIndicatorImageに透過画像を指定することで消すことができる。 aTabBar.selectionIndicatorImage = [UIImage imageNamed:@"transparent.png"];
Persistent rightBarButtonItem Property of UINavigationItemに書かれていることがやりたくてUINavigationControllerDelegateのnavigationController:willShowViewController:animated:を使おうとしたんだけど、navigationController.visibleViewController…