FrontPage > Apple > iOS開発メモ > Cocoa Touch Layer(UIKit) > UIViewController

UIViewController (ビュー・コントローラ)

リファレンス

Apple リファレンス

継承

UIResponder > NSObject

関連項目

UIView

Creating a View Controller Using Nib Files

initWithNibName

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil;

nibName

nibName  property

nibBundle

nibBundle  property

Managing the View

view

view  property

loadView

- (void)loadView;

viewDidLoad

- (void)viewDidLoad;

viewDidUnload

- (void)viewDidUnload __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);

isViewLoaded

- (BOOL)isViewLoaded __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);

title

title  property

contentSizeForViewInPopover

contentSizeForViewInPopover  property

modalInPopover

modalInPopover  property

Responding to View Events

viewWillAppear

- (void)viewWillAppear:(BOOL)animated;

viewDidAppear

- (void)viewDidAppear:(BOOL)animated;

viewWillDisappear

- (void)viewWillDisappear:(BOOL)animated;

viewDidDisappear

- (void)viewDidDisappear:(BOOL)animated;

Configuring the View’s Layout Behavior

wantsFullScreenLayout

wantsFullScreenLayout  property

Configuring the View Rotation Settings

interfaceOrientation

interfaceOrientation  property

shouldAutorotateToInterfaceOrientation

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation;

rotatingHeaderView

- (UIView *)rotatingHeaderView;

rotatingFooterView

- (UIView *)rotatingFooterView;

Responding to View Rotation Events

willRotateToInterfaceOrientation

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration;

willAnimateRotationToInterfaceOrientation

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);

didRotateFromInterfaceOrientation

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation;

willAnimateFirstHalfOfRotationToInterfaceOrientation

- (void)willAnimateFirstHalfOfRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration;

didAnimateFirstHalfOfRotationToInterfaceOrientation

- (void)didAnimateFirstHalfOfRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation;

willAnimateSecondHalfOfRotationFromInterfaceOrientation

- (void)willAnimateSecondHalfOfRotationFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation duration:(NSTimeInterval)duration;

Handling Memory Warnings

didReceiveMemoryWarning

- (void)didReceiveMemoryWarning;

Getting Other Related View Controllers

parentViewController

parentViewController  property

searchDisplayController

searchDisplayController  property

splitViewController

splitViewController  property

modalViewController

modalViewController  property

navigationController

navigationController  property

tabBarController

tabBarController  property

Presenting Modal Views

presentModalViewController

- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated;

dismissModalViewControllerAnimated

- (void)dismissModalViewControllerAnimated:(BOOL)animated;

modalTransitionStyle

modalTransitionStyle  property

modalPresentationStyle

modalPresentationStyle  property

Configuring a Navigation Interface

navigationItem

navigationItem  property

editing

editing  property

setEditing

- (void)setEditing:(BOOL)editing animated:(BOOL)animated;

editButtonItem

- (UIBarButtonItem *)editButtonItem;

hidesBottomBarWhenPushed

hidesBottomBarWhenPushed  property

Configuring the Navigation Controller’s Toolbar

setToolbarItems

- setToolbarItems:animated:

toolbarItems

toolbarItems  property

Configuring Tab Bar Items

tabBarItem

tabBarItem  property

トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2010-08-11 (水) 11:55:37