今回はIB使用。
次回からはIB排除の方向で!
□ ステータスバーの非表示
書類ビューで"View"を選択してStatus Barの項目をNoneにするとステータスバーが非表示になる。
□ 画面を横にしたい。
Classesの"Project Name.m"のコメントアウトされている
// Override to allow orientations other than the default portrait orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // この返り値が開始時のビューの向きを変更している return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); }
の部分を上記に置き換えるとホームボタンを右にした状態の横画面になる。
□ビュー毎の色分け
ビュー毎にラベルや実際に色付して管理すると見やすい(…かも)。
ビューに色をつけた場合、後から画像などを登録した時にインスペクラウィンドウのBackGroundからOpacityを0%にしておくと色が透明になる。