FrontPage > Apple > iOS開発メモ > Cocoa Touch Library

Interface Builder - Cocoa Touch Library

画面イメージ作成の「Interface Builder」にて選択出来る「Cocoa Touch Library」の一覧。


Library - Cocoa Touch - Controllers

Split View Controller (分割ビュー・コントローラー)

#ref(): File not found: "SplitViewController.png" at page "InterfaceBuilder-CocoaTouch"

UISplitViewController
A composite view controller that manages left and right view controllers.

View Controller (ビュー・コントローラー)

#ref(): File not found: "ViewController.png" at page "InterfaceBuilder-CocoaTouch"

UIViewController
Provides view-management functionality for toolbars, 
navigation bars, and application views. 
The UIViewController class also supports modal views and rotating views when device orientation changes.

Navigation Controller (ナビゲーション・コントローラー)

#ref(): File not found: "NavigationController.png" at page "InterfaceBuilder-CocoaTouch"

UINavigationController
Manages a stack of view controllers, each of which represents information about a view, 
such as its title and the navigation item associated with the view. 
When view controllers are pushed onto and popped off the stack, 
the navigation controller updates the navigation bar and view appropriately.

Tab Bar Controller (タブ・バー・コントローラー)

#ref(): File not found: "TabBarController.png" at page "InterfaceBuilder-CocoaTouch"

UITabBarController
Manages a set of view controllers, each of which represents a tab bar item. 
Each view controller provides information about its tab bar item and 
supplies the view to be displayed when the item is selected.

Table View Controller (テーブル・ビュー・コントローラー)

#ref(): File not found: "TableViewController.png" at page "InterfaceBuilder-CocoaTouch"

UITableViewController
Manages a UITableView, 
automatically creating an instance with the correct dimensions and resizing mask, 
and acting as the table view's delegate and data source. 
The UITableViewController class also provides toggling of editing modes.

Image Picker Controller (イメージ・ピッカー・コントローラー)

#ref(): File not found: "ImagePickerController.png" at page "InterfaceBuilder-CocoaTouch"

UIImagePickerController
A controller that manages the system-supplied user interfaces for choosing and taking pictures. 
You use this class in situations where you want to obtain a picture from the user. 
The class manages the actual user interactions with the views and 
reports the results of those interactions to your delegate object.

Object (オブジェクト)

#ref(): File not found: "Object.png" at page "InterfaceBuilder-CocoaTouch"

NSObject
Provides a template for objects that are not directly available in Interface Builder. 
You can turn this object into an instance of any class using the custom class inspector.

External Object (外部オブジェクト)

#ref(): File not found: "ExternalObject.png" at page "InterfaceBuilder-CocoaTouch"

NSObject
This object is a placeholder for an object that exists outside of the contents of this document. 
Connections made to and from this object will resolve to an object specified by 
the UINibExternalObjects option in the options parameter of the NIB loading API.


Library - Cocoa Touch - Data Views

Table View (テーブル・ビュー)

#ref(): File not found: "TableView.png" at page "InterfaceBuilder-CocoaTouch"

UITableView
Displays a single-column list of multiple rows through which users can scroll. 
Each row in a table view is a UITableViewCell object. 
The plain style table view displays rows that occupy the full width of the view and 
can display optional headers and footers for arbitrary sections of rows and for the table as a whole. 
The grouped style table view displays distinct groups of rows inset from the edges of the view and 
can display optional headers and footers between groups. 
A user can edit a table by inserting, deleting, and reordering table cells.

Table View Cell (テーブル・ビュー・セル)

#ref(): File not found: "TableViewCell.png" at page "InterfaceBuilder-CocoaTouch"

UITableViewCell
Defines the attributes and behavior of cells in a table view. 
You can set a table cell's selected-state appearance, support editing functionality, 
display accessory views (such as a switch control), and 
specify background appearance and content indentation.

Image View (イメージ・ビュー)

#ref(): File not found: "ImageView.png" at page "InterfaceBuilder-CocoaTouch"

UIImageView
Displays a single image, or an animation described by an array of images.

Web View (Webビュー)

#ref(): File not found: "WebView.png" at page "InterfaceBuilder-CocoaTouch"

UIWebView
Provides a view to embed web content. 
A UIWebView object can be attached to a window, and sent requests to load web content. 
This class can also be used to move back and forward in the history of webpages, 
and set some web content properties programmatically.

Map View (マップ・ビュー)

#ref(): File not found: "MapView.png" at page "InterfaceBuilder-CocoaTouch"

MKMapView
An MKMapView object provides an embeddable map interface, similar to the one provided by the Maps application. 
You use this class as-is to display map information and to manipulate the map contents from your application. 
You can center the map on a given coordinate, 
specify the size of the area you want to display, and annotate the map with custom information.

Text View (テキスト・ビュー)

#ref(): File not found: "TextView.png" at page "InterfaceBuilder-CocoaTouch"

UITextView
UITextView displays a region that can contain multiple lines of editable text in a scrollable view. 
When a user taps a text view, a keyboard appears. 
Which keyboard appears, how capitalization is handled and other text input traits can be configured. 
You can specify attributes, such as font, color, and alignment, that apply to all text in a text view.

Scroll View (スクロール・ビュー)

#ref(): File not found: "ScrollView.png" at page "InterfaceBuilder-CocoaTouch"

UIScrollView
UIScrollView provides a mechanism to display content that is larger than the size of the application's window and 
enables users to scroll within that content by making swiping gestures.

Picker View (ピッカー・ビュー)

#ref(): File not found: "PickerView.png" at page "InterfaceBuilder-CocoaTouch"

UIPickerView
Provides a potentially multidimensional user-interface element consisting of rows and components. 
A component is a wheel, which has a series of items (rows) at indexed locations on the wheel. 
Each row on a component has content, which is either a string or a view object such as a label or an image.

Data Picker (日付ピッカー)

#ref(): File not found: "DataPicker.png" at page "InterfaceBuilder-CocoaTouch"

UIDataPicker
Provides an object that uses multiple rotating wheels to allow users to select dates and times. 
Examples of a date picker are the Timer and Alarm (Set Alarm) panes of the Clock application. 
You may also use a UIDatePicker as a countdown timer.


Library - Cocoa Touch - Inputs & Values

Segmented Control (分割コントロール)

#ref(): File not found: "SegmentedControl.png" at page "InterfaceBuilder-CocoaTouch"

UISegmentedControl
Displays an element that comprises multiple segments, each of which functions as a discrete button. 
Each segment can display either text or an image, but not both. 
UISegmentedControl ensures that the width of each segment is proportional, 
based on the total number of segments, unless you set a specific width.

Label (ラベル)

#ref(): File not found: "Label.png" at page "InterfaceBuilder-CocoaTouch"

UILabel
Implements a read-only text view. 
A label can contain an arbitrary amount of text, but UILabel may shrink, wrap, or truncate the text, 
depending on the size of the bounding rectangle and properties you set. 
You can control the font, text color, alignment, highlighting, and shadowing of the text in the label.

Round Rect Button (ボタン)

#ref(): File not found: "RoundRectButton.png" at page "InterfaceBuilder-CocoaTouch"

UIButton
Implements a button that intercepts touch events and sends an action message to a target object when it's tapped. 
You can set the title, image, and other appearance properties of a button. 
In addition, you can specify a different appearance for each button state.

Text Field (テキスト入力)

#ref(): File not found: "TextField.png" at page "InterfaceBuilder-CocoaTouch"

UITextField
Displays a rounded rectangle that can contain editable text. 
When a user taps a text field, a keyboard appears; when a user taps Return in the keyboard, 
the keyboard disappears and the text field can handle the input in an application-specific way. 
UITextField supports overlay views to display additional information, such as a bookmarks icon. 
UITextField also provides a clear text control a user taps to erase the contents of the text field.

Switch (スイッチ)

#ref(): File not found: "Switch.png" at page "InterfaceBuilder-CocoaTouch"

UISwitch
Displays an element that shows the user the boolean state of a given value. 
By tapping the control, the state can be toggled.

Slider (スライダー)

#ref(): File not found: "Slider.png" at page "InterfaceBuilder-CocoaTouch"

UISlider
UISlider displays a horizontal bar, called a track, that represents a range of values. 
The current value is shown by the position of an indicator, or thumb. 
A user selects a value by sliding the thumb along the track. 
You can customize the appearance of both the track and the thumb.

Progress View (プログレス・ビュー)

#ref(): File not found: "ProgressView.png" at page "InterfaceBuilder-CocoaTouch"

UIProgressView
UIProgressView depicts the progress of a task over time. 
The current progress is represented by a floating-point value between 0.0 and 1.0, 
inclusive, where 1.0 indicates the completion of the task. 
Values less than 0.0 and greater than 1.0 are pinned to those limits.

Activity Indicator View (砂時計!?)

#ref(): File not found: "ActivityIndicatorView.png" at page "InterfaceBuilder-CocoaTouch"

UIActivityIndicatorView
Displays an element that provides user feedback on the progress of a task or process with an unknown duration 
(to show the progress of a task with known duration, use UIProgressView instead). 
As long as the task or process continues, the activity indicator spins. 
A user does not interact with an activity indicator.

Page Control (ページ・コントロール)

#ref(): File not found: "PageControl.png" at page "InterfaceBuilder-CocoaTouch"

UIPageControl
UIPageControl indicates the number of open pages in an application by displaying a dot for each open page. 
The dot that corresponds to the currently viewed page is highlighted. 
UIPageControl supports navigation by sending the delegate an event 
when a user taps to the right or to the left of the currently highlighted dot.


Library - Cocoa Touch - Windows, Views & Bars

Window (ウインド)

#ref(): File not found: "Window.png" at page "InterfaceBuilder-CocoaTouch"

UIWindow
UIWindow defines a window object, which provides an area for displaying the views it contains and 
distributes events to those views. 

View (ビュー)

#ref(): File not found: "View.png" at page "InterfaceBuilder-CocoaTouch"

UIView
UIView provides a structure for drawing and handling events. 
A UIView object claims a rectangular region of its enclosing superview (its parent in the view hierarchy) and 
is responsible for all drawing in that region, as well as receiving events that occur in the region.

Search Bar (検索バー)

#ref(): File not found: "SearchBar.png" at page "InterfaceBuilder-CocoaTouch"

UISearchBar
UISearchBar displays a rounded rectangle that can contain editable text. 
When a user taps a search bar, a keyboard appears; when a user taps Return in the keyboard, 
the keyboard disappears and the search bar can handle the input in an application-specific way. 
By default, UISearchBar displays the search icon. 
It can also display placeholder text and a clear text control when user-input text is visible.

Search Bar and Search Display (検索バーと検索結果表示)

#ref(): File not found: "SearchBar_SearchDisplay.png" at page "InterfaceBuilder-CocoaTouch"

UISearchBar
The UISearchBar control provides a text field for entering text, 
a search button, a bookmark button, and a cancel button. 
The search display controller manages display of a search bar and 
a table view that displays the results of a search of data managed by another view controller. 
If the search bar is inserted into a view controller's view, 
the appropriate connections to the search display controller will automatically be configured.

Navigation Bar (ナビゲーション・バー)

#ref(): File not found: "NavigationBar.png" at page "InterfaceBuilder-CocoaTouch"

UINavigationBar
Provides a mechanism for displaying a navigation bar just below the status bar. 
To support navigation of hierarchical content, 
UINavigationBar uses a stack to manage instances of UINavigationItem, 
each of which represents a state of the navigation bar. 
By default, UINavigationBar displays a back button on the left and a title in the center, 
but you can specify custom views for these, in addition 
to providing an optional button on the right of the navigation bar. 
Note that if you use a UINavigationController object to manage hierarchical navigation, 
you should not directly access the navigation bar object.

Navigation Item (ナビゲーション・アイテム)

#ref(): File not found: "NavigationItem.png" at page "InterfaceBuilder-CocoaTouch"

UINavigationItem
Encapsulates information about a navigation item on the UINavigationBar object's stack, 
including what is displayed on the navigation bar when the item is at the top of the stack and 
how it is represented when it is the back item. 
To be represented on the navigation bar, a navigation item must have a title.

Toolbar (ツールバー)

#ref(): File not found: "Toolbar.png" at page "InterfaceBuilder-CocoaTouch"

UIToolbar
Provides a mechanism for displaying a toolbar at the bottom of the screen and 
supports the display and selection of toolbar items (instances of UIToolbarItem). 
You can use UIToolbarDelegate to specify custom views for toolbar items.

Bar Button Item (バー・ボタン・アイテム)

#ref(): File not found: "BarButtonItem.png" at page "InterfaceBuilder-CocoaTouch"

UIBarButtonItem
Represents an item in a UIToolbar or UINavigationItem. 
Each bar button item behaves similarly to a button, 
and has a title, image, action, and target. 
The UIBarButtonItem class provides methods you can use 
to specify bar button items with system-provided images, such as the plus image.

Fiexible Space Bar Button Item (可変スペース・ボタン・アイテム)

#ref(): File not found: "FiexibleSpaceBarButtonItem.png" at page "InterfaceBuilder-CocoaTouch"

UIBarButtonItem
Represents a flexible space item on a UIToolbar object.

Fixed Space Bar Button Item (固定スペース・ボタン・アイテム)

#ref(): File not found: "FixedSpaceBarButtonItem.png" at page "InterfaceBuilder-CocoaTouch"

UIBarButtonItem
Represents a fixed space item on a UIToolbar object.

Tab Bar (ツール・バー)

#ref(): File not found: "TabBar.png" at page "InterfaceBuilder-CocoaTouch"

UITabBar
Provides a mechanism for displaying a tab bar at the bottom of the screen and 
supports the display and selection of tab bar items (instances of UITabBarItem). 
You can use UITabBarDelegate to specify custom views for tab bar items.

Tab Bar Item (ツール・バー・アイテム)

#ref(): File not found: "TabBarItem.png" at page "InterfaceBuilder-CocoaTouch"

UITabBarItem
Represents an item in a UITabBar. 
Each tab bar item has a title, and image and is used to select a view in a UITabBar.

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