IOS简单的登陆界面

时间:2014-04-29 22:28:37   收藏:0   阅读:616

主要需要注意的几个问题:

       1.导入图片方式最好用文件导入

         代码:

         在ViewController.m文件中

         bubuko.com,布布扣

       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、点击界面空白地方的时候,能够收起输入键盘,防止挡住用户点击登陆。 

     代码:

          bubuko.com,布布扣           

           //点击界面空白地方的时候,能够收起输入键盘,防止挡住用户点击登陆

            bubuko.com,布布扣 

            //登陆按钮

             bubuko.com,布布扣

             bubuko.com,布布扣

总结:

        熟悉@property(nonatomic) NSInteger numberOfLines;//设置文本多行显示

        熟悉密码安全设置secureTextEntry变黑点

        熟悉-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event回收键盘方法

        熟悉按钮addTarget控制点击事件的使用

        熟悉UIAlertView类的使用

 

     

IOS简单的登陆界面,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!