Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống
1
/ 18 trang
THÔNG TIN TÀI LIỆU
Thông tin cơ bản
Định dạng
Số trang
18
Dung lượng
1,35 MB
Nội dung
mttrung@gmail.com 3/13/13 1 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn www.laptrinhdidong.vn Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM Lập trình ứng dụng trên iOS Label, Button, Text Field, Slider, Switch, Segment Control mttrung@gmail.com 3/13/13 2 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Nội dung • Label • Button • Text Field • Sliders • Switches • Segmented Controls mttrung@gmail.com 3/13/13 3 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Label • text • textColor • textAlignment • font • lineBreakMode • backgroundColor mttrung@gmail.com 3/13/13 4 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Button • + (id)buttonWithType:(UIButtonType)buttonType • - (void)setTitle:(NSString *)title forState: (UIControlState)state! • - (void)addTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents mttrung@gmail.com 3/13/13 5 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • text • textAlignment • textColor • background • clearButtonMode • borderStyle • delegate • editing • font • placeholder mttrung@gmail.com 3/13/13 6 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • text – @property(nonatomic, copy) NSString *text • textAlignment: UITextAlignmentLeft (default), UITextAlignmentCenter, UITextAlignmentRight – @property(nonatomic) UITextAlignment textAlignment mttrung@gmail.com 3/13/13 7 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • textColor (default -> nil) – @property(nonatomic, retain) UIColor *textColor • background (default -> nil) – @property(nonatomic, retain) UIImage *background mttrung@gmail.com 3/13/13 8 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • clearButtonMode – @property(nonatomic) UITextFieldViewMode clearButtonMode mttrung@gmail.com 3/13/13 9 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • borderStyle – @property(nonatomic) UITextBorderStyle borderStyle mttrung@gmail.com 3/13/13 10 Trung tâm Tin học – ĐH Khoa Học Tự Nhiên HCM www.laptrinhdidong.vn Text Field • delegate – @property(nonatomic, assign) id<UITextFieldDelegate> delegate