これは絶対に参考になるしライブラリとして自分のアプリに入れることも可能だろう。
iPhoneアプリを開発している人は絶対にみたほうがいい。
Mac OS Xのもあるのかな??そこはよくわからない。
Custom UI Component Database for iOS and Mac OS X
2011年4月26日火曜日
2011年4月22日金曜日
2011年4月21日木曜日
Yahoo!Pipes
Yahoo!Pipesなるものがあるらしい。
いままで知らなかった。偶然見つけた。こんなものがあったなんて。。。
いままで出来ないと思っていたことができるではないか!!
すばらしいき人がYahoo!Pipes講座なるものをしている。
メモメモ
Yahoo! Pipes講座のまとめページを作りました♪
いままで知らなかった。偶然見つけた。こんなものがあったなんて。。。
いままで出来ないと思っていたことができるではないか!!
すばらしいき人がYahoo!Pipes講座なるものをしている。
メモメモ
Yahoo! Pipes講座のまとめページを作りました♪
2011年4月3日日曜日
ModalViewにNavigationControllerを追加する方法
通常のモーダルは
ModalView* dialog = [[[ModalView alloc] init] autorelease];
dialog.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:dialog animated:YES];
でモーダルに推移する。
このモーダルにナビゲーションバーを追加表示する。
方法は超簡単。
ModalView* dialog = [[[ModalView alloc] init] autorelease];
dialog.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
UINavigationController *NavigationController =
[[UINavigationController alloc] initWithRootViewController:dialog];
[self presentModalViewController:NavigationController animated:YES];
参考間違いだらけの iPhone 開発備忘録
ModalView* dialog = [[[ModalView alloc] init] autorelease];
dialog.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:dialog animated:YES];
でモーダルに推移する。
このモーダルにナビゲーションバーを追加表示する。
方法は超簡単。
ModalView* dialog = [[[ModalView alloc] init] autorelease];
dialog.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
UINavigationController *NavigationController =
[[UINavigationController alloc] initWithRootViewController:dialog];
[self presentModalViewController:NavigationController animated:YES];
参考間違いだらけの iPhone 開発備忘録
登録:
投稿 (Atom)