2 UITestViewController.xibにUI部品を貼付ける
各種プロパティの設定を行う
3 UITestViewController.hに以下を作成
@interface UITestViewController : UIViewController {
IBOutlet UILabel *label1;
IBOutlet UITextField *text1;
IBOutlet UIButton *button1;
}
4 インターフェースビルダーでアウトレット変数とUI部品をリンクする
<イベント処理>
5 UITestViewController.hに以下を追加
-(IBAction) btn_dwn:(id)sender;
6 インターフェースビルダーでRecieved Actionsとイベントが発生するUI部品をリンクする
7 UITestViewController.mにイベントを追加
- (IBAction)btn_dwn:(id)sender
{
label1.text = @"判断結果は大吉です!";
}
■UI部品一覧
UILabel
UIButton
UISegmentedControl
UITextField
UISlider
UISwitch
UIActivityIndicatorView
UIProgressView
UIPageControl
UITableView
UITableViewCell
UIImageView
UITextView
UIWebView
MKMapView
UIScrollView
UIDatePicker
UIPickerView
ADBannerView
NSObject
UIViewController
UITableViewController
UINavigationController
UITabBarController
UIView
UIWindow
UINavigationBar
UINavigationItem
UISearchBar
UIToolbar
UIBarButtonItem
UITabBar
UITabBarItem