主要需要注意的幾個問題:
? ? ? ?1.導入圖片方式最好用文件導入
? ? ? ? ?代碼:
? ? ? ? ?在ViewController.m文件中
? ? ? ? ?
? ? ? ?2.UILable常用屬性
? ? ? ? ?@property(nonatomic,copy) ? NSString ? ? ? ? ? *text; //設置文本內容 ? ? ? ??
? ? ? ? ?@property(nonatomic,retain) UIFont ? ? ? ? ? ? *font; //設置字體 ? ? ??
? ? ? ? ?@property(nonatomic,retain) UIColor? ? ? ? ? ? *textColor; //設置文本顏色 ? ??
? ? ? ? ?@property(nonatomic)? ? ? ? NSTextAlignment? ? textAlignment; ? //設置文本的排列方式? ? ?
? ? ? ? ?@property(nonatomic) NSInteger numberOfLines;//設置文本多行顯示
? ? ? ?3.UITextField 文本輸入框
? ? ? ? ??1、密碼輸入框要隱藏輸入字符,以黑點代替?
? ? ? ? ? 2、Login時會檢查輸入框,若輸入不合法,彈窗提示用戶?
? ? ? ? ? 3、點擊界面空白地方的時候,能夠收起輸入鍵盤,防止擋住用戶點擊登陸。?
? ? ?代碼:
? ? ? ? ??? ? ? ? ? ?
? ? ? ? ? ?//點擊界面空白地方的時候,能夠收起輸入鍵盤,防止擋住用戶點擊登陸
? ? ? ? ? ? ?
? ? ? ? ? ? //登陸按鈕
? ? ? ? ? ? ?
? ? ? ? ? ? ?
總結:
? ? ? ??熟悉@property(nonatomic)?NSInteger?numberOfLines;//設置文本多行顯示
? ? ? ? 熟悉密碼安全設置secureTextEntry變黑點
? ? ? ? 熟悉-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event回收鍵盤方法
? ? ? ? 熟悉按鈕addTarget控制點擊事件的使用
? ? ? ? 熟悉UIAlertView類的使用
?
? ? ?