2.Thiết kế form như hình vẽ gồm
- UILable: Để hiển thị tên khi nhập vào.
- UITextField: Nhập tên vào.
- UIButton: Submit tên nhập vào
3. Trong file viewController.h
Mã:
@interface ViewController : UIViewController { IBOutlet UILabel * lblTitle; IBOutlet UITextField * txtName; IBOutlet UIButton * btnOK; } -(IBAction)submit:(id)sender; @end
4. Mapp giao diện với code:
- Đầu tiên là mapp với lblTitle: từ file's Owner nhấn chuột phải kéo qua file xib chọn vào UILabel vào chọn lblTitle
Động tác này nhằm khai báo với code rằng UILable này có tên là lblTitle như hình
- Tương tự cho các control khác: UITextField Và UIButton
5. Trong file's Owner nhấn chuột phải trong phấn Received action kéo action submit vào button OK và chọn touch up inside
6. Trong file viewController.m
Mã:
-(IBAction)submit:(id)sender { NSString *strName = [NSString stringWithFormat:@"Hello %@", txtName.text]; lblTitle.text = strName; // NSLog(@"%@", txtName.text); }
// chúc các bạn thành công
No comments:
Post a Comment