トップ
新規
一覧
単語検索
最終更新
ヘルプ
ログイン
アールメカブ
TabBarApplication
をテンプレートにして作成
開始行:
[[Programming]]
Tab Bar Application では任意のView を追加することができる.
[[ここ:http://d.hatena.ne.jp/kurusaki/20081204/1228325765...
#contents
* View の追加.TableView も同様 [#rb3c7a0d]
手順は
- View.xib を新規に作成.NewView.xibとする
- Libraryから View Controller を選択,MainWindow.xibのTab...
- Tab が増えるので,その View をクリック.Inspector の NI...
- この新しいタブの View 用の UIViewController クラスファ...
- NewView.xib を開いて,File's Owner のクラスを今作成した...
- File's Owner と View をアウトレット接続する
- View の Inspectorで View Simulated Bar Metrics の Statu...
これで実行できるTableView でも同じ手続きで追加できる.
* Tab 間の移動 [#f9ce4ec0]
さて,今,最初のタブから NewView タブに移動し,何かのタイ...
たとえば IBAciton として指定されたメソッドに以下を追加す...
self.tabBarController.selectedIndex = 0;
か
self.tabBarController.selectedViewController =
[self.tabBarController.viewControllers objectAtIndex:0];
ただ,この際,アニメーションを行う方法が分からない
viewDidAppear:(BOOL)animated
というメソッドがあって紛らわしい(%%クラスでオーバーライト...
と思って検索したら[[次のような情報:http://osdir.com/ml/iP...
>
I'm switching between a view maintained by UITabBarContro...
To achieve the view switching in this way you cannot add ...
<
>
I think I have finally found a solution to this, neatly.
What I did was:
<
-1. Create a RootViewController : UIViewController
-2. Create a TabController : UITabBarController. Then ass...
-3. Create OtherSideView : UIViewController.
-4. Add TabController.view onto RootViewController.view.
-- a. Before adding TabController.view onto RootViewCo...
-- b. I have to do the above to allow TabController.vi...
-5. Add RootViewController.view onto window.view
-6. When switching the views or animating the flipping, i...
-- do set RootViewController.view.frame with UIScreen....
終了行:
[[Programming]]
Tab Bar Application では任意のView を追加することができる.
[[ここ:http://d.hatena.ne.jp/kurusaki/20081204/1228325765...
#contents
* View の追加.TableView も同様 [#rb3c7a0d]
手順は
- View.xib を新規に作成.NewView.xibとする
- Libraryから View Controller を選択,MainWindow.xibのTab...
- Tab が増えるので,その View をクリック.Inspector の NI...
- この新しいタブの View 用の UIViewController クラスファ...
- NewView.xib を開いて,File's Owner のクラスを今作成した...
- File's Owner と View をアウトレット接続する
- View の Inspectorで View Simulated Bar Metrics の Statu...
これで実行できるTableView でも同じ手続きで追加できる.
* Tab 間の移動 [#f9ce4ec0]
さて,今,最初のタブから NewView タブに移動し,何かのタイ...
たとえば IBAciton として指定されたメソッドに以下を追加す...
self.tabBarController.selectedIndex = 0;
か
self.tabBarController.selectedViewController =
[self.tabBarController.viewControllers objectAtIndex:0];
ただ,この際,アニメーションを行う方法が分からない
viewDidAppear:(BOOL)animated
というメソッドがあって紛らわしい(%%クラスでオーバーライト...
と思って検索したら[[次のような情報:http://osdir.com/ml/iP...
>
I'm switching between a view maintained by UITabBarContro...
To achieve the view switching in this way you cannot add ...
<
>
I think I have finally found a solution to this, neatly.
What I did was:
<
-1. Create a RootViewController : UIViewController
-2. Create a TabController : UITabBarController. Then ass...
-3. Create OtherSideView : UIViewController.
-4. Add TabController.view onto RootViewController.view.
-- a. Before adding TabController.view onto RootViewCo...
-- b. I have to do the above to allow TabController.vi...
-5. Add RootViewController.view onto window.view
-6. When switching the views or animating the flipping, i...
-- do set RootViewController.view.frame with UIScreen....
ページ名: