[iOS] 第七課 更進一步的使用者界面1

開啓新專案,在ViewController.h中輸入:

@interface ViewController : UIViewController {
    UITextField *name;
    UITextField *password;
}
@property (nonatomic, retain) IBOutlet UITextField *name;
@property (nonatomic, retain) IBOutlet UITextField *password;

@end

留言