控件设置属性(UIButton,UITextField)

//延展
@interface AppDelegate ()
{
    UIView *_View;
}
//不是一开始定义类的时候定义的实例变量,而是后期根据需求而定义的实例变量,统一定义在.m文件中的延展中,外界不可见.
@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    UIImage * ima = [UIImage imageNamed:@"a.jpg"];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    _View = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 568)];
    _View.backgroundColor = [UIColor grayColor];
    [self.window addSubview:_View];
    [_View release];
    
    //创建UILabel
    [self createLabel];
    //创建UITextField
    [self createTextField];
    //创建UIAlertView
    [self createAlertView];
    //创建UIButton
    [self createButton];
    
    return YES;
}

- (void)createButton
{
    UIButton * button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(30, 300, 100, 40);
    button.backgroundColor = [UIColor whiteColor];
    
    button.layer.cornerRadius = 5;
    
    NSInteger a = 1;
    [button setTitle:[NSString stringWithFormat: @"%ld",a] forState:UIControlStateNormal];
    
    //给button添加响应事件
    button.tag = 100 + a;

//click 后面的参数为 : 谁调用addTarget:action: 方法 .参数就是谁. 而且参数只能是一个.
    [button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

[_View addSubview:button];
}

- (void)click :(UIButton *)button
{
   // button.textInputContextIdentifier = @"aaa";
    NSLog(@"%@",button);
}

- (void)createTextField
{
    //UITextField 是UIControl的子类,UIControl又是UIView的子类,所以也是一个视图,只不过比UIView多了两个功能:(1)文字显示(2)文本编辑
    //UITextField的使用步骤和UIView一样
    //1.创建对象
    UITextField * field = [[UITextField alloc]initWithFrame:CGRectMake(50, 50, 220, 30)];
    //2.配置属性
    field.backgroundColor = [UIColor whiteColor];
    
    //(1)设置 边框样式
    
    /**
     UITextBorderStyleNone,
     UITextBorderStyleLine,   边框
     UITextBorderStyleBezel,
     UITextBorderStyleRoundedRect 圆角
     */
    field.borderStyle = UITextBorderStyleRoundedRect;
    //(2)设置输入框默显示(提示文字)的文字,但是不做为文本内容的一部分
    field.placeholder = @"请输入用户名";
    //(3)设置开始显示的文字
    field.text = @"string";
    //(4)设置文本颜色
    field.textColor = [UIColor redColor];
    //(5)对齐方式
    field.textAlignment = NSTextAlignmentCenter;
    //(6)文本字体
    field.font = [UIFont fontWithName:@"Thonburi-Bold" size:20];
    //(7)是否输入框是否可编辑
    field.enabled = YES;
    //(8)开始时清空输入框
    field.clearsOnBeginEditing = YES;
    //(9)是否文字以圆点格式显示 (设置密码模式)
    field.secureTextEntry = YES;
    //(10) 设置弹出键盘的样式
//    field.keyboardType = UIKeyboardTypeNumberPad;
    
    //(11)键盘右下角的显示的样式
    field.returnKeyType = UIReturnKeyGo;
    
    //(11)代理
    //代理使用步骤:
        //1.设置代理
    
    field.delegate = self;
        //2.服从协议
            //  UITextFieldDelegate
        //3.实现协议中的方法
            //(BOOL)textFieldShouldReturn:(UITextField *)textField
    //(12)自定义输入视图
    UIView * v1 = [[UIView alloc]initWithFrame:CGRectMake(200, 0, 568, 100)];
    v1.backgroundColor = [UIColor redColor];
   // field.inputView = v1;
    // (13)输入视图上方的辅助视图
    field.inputAccessoryView = v1;
    //3.添加到父视图
    [_View addSubview:field];
    //4.释放所有权
    [field release];
}

//当点击键盘的右下角return按钮时触发
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    //回收键盘 取消第一响应者
    [textField resignFirstResponder];
    NSLog(@"click");
    return YES;
}
- (void)createAlertView
{
    
}

//当在一个方法中要访问另外一个方法中定义的局部变量时,就把该变量定义为实例变量.或者在多个方法中想访问一个变量,也要把该变量声明为实例变量
- (void)createLabel
{
    /**
     UILabel 是iOS开发中用来显示文字的控件,是UIView的子类.右移具有UIView的所有功能,只不过比UIView多了文字显示的功能.
     UILabel的使用过程和UIView类似:
     1.创建对象
     2.配置属性
     3.添加到父视图
     4.释放所有权
     不同的控件之间只是配置的属性的不同,也就是差异所在,所以学习一个新控件时,只要配置该控件独有的属性即可.
     */
    UILabel * v1 = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    v1.backgroundColor =[UIColor whiteColor];
    //设置label上显示的文字
    v1.text = @"ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    //label 文字位置
    //0 NSTextAlignmentLeft        左对齐
    //1 NSTextAlignmentCenter    居中
    //2 NSTextAlignmentRight      右对齐
    v1.textAlignment = NSTextAlignmentCenter;
    //文字换行  默认为1 如果不限制行数将值设置为 0
    v1.numberOfLines = 0;
    //换行的标准(文本的截取原则) 默认 以单词为一组
    /**
     NSLineBreakByWordWrapping = 0,          Wrap at word boundaries, default
     NSLineBreakByCharWrapping,         Wrap at character boundaries
     NSLineBreakByClipping,              Simply clip
     NSLineBreakByTruncatingHead,     Truncate at head of line: "...wxyz"
     NSLineBreakByTruncatingTail,     Truncate at tail of line: "abcd..."
     NSLineBreakByTruncatingMiddle     Truncate middle of line:  "ab...yz"
     */
    v1.lineBreakMode = NSLineBreakByClipping;
    
    //设置阴影的偏移量 正值向X Y 轴 正方向偏移 负值向反方向偏移.
    v1.shadowOffset = CGSizeMake(2, 2) ;
    //设置阴影的颜色
    v1.shadowColor = [UIColor yellowColor];
    // label 文字颜色
    v1.textColor = [UIColor redColor];
    //label 文字大小
    //(1)字体样式
    
    //(2)字号(默认 17)
    //systemFontOfSize: 默认使用系统默认字体,可以更改字体大小.
    v1.font = [UIFont systemFontOfSize:25];
    
    v1.font = [UIFont fontWithName:@"Thonburi-Bold" size:20];
    //    //UIFont familyNames 获取字体家族的名字
    //    NSLog(@"%@",[UIFont familyNames]);
    //    //UIFont fontNamesForFamilyName:@"Thonburi" 获取对应字体下属的字体名字
    //    NSLog(@"%@",[UIFont fontNamesForFamilyName:@"Thonburi"]);
    
    
    [_View addSubview:v1];
    [v1 release];

}

时间: 2024-10-05 04:24:35

控件设置属性(UIButton,UITextField)的相关文章

js控件设置只读属性和不可用属性

介绍js实现只读的几种方法: 设置控件只读的话,我们要先清楚哪些没有readOlny这个属性 我知道的checkbox和RadioButton没有readOlny这个属性,我上一篇已经介绍了如何设置checkbox的只读了. 今天我们只是了解通用的控件只读和不可用 document.getELementById(textId).disabled=true;document.getElementById(textId).setAttribute("disabled", true);  d

Android动态布局,并动态为TextView控件设置drawableLeft、drawableRight等属性添加图标

注:(图中每一个条目和图标都是由代码动态生成) 代码动态布局,并需要为每一个条目设置图标,此时用到了 android:drawableLeft="@drawable/icon"  父xml文件: [html] view plaincopyprint? <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.andr

当控件设置disabled=&quot;disabled&quot;属性时,后台不能获取修改后的值

<input id="Text1" type="text" disabled="disabled" /> 因为控件设置的disabled="disabled",是把控件给禁用了,所以后台想要获取到修改后的值有两种方法解决: 一.既然是把控件给禁用了才获取不到修改的值,那就按照这种思路解决,在后台给数据库修改数据之前,先把disabled属性设置为False,获取到控件的值,之后再把 disabled属性设置为Tru

asp.net中遍历界面上所有控件进行属性设置

* 使用方法: *  前台页面调用方法,重置:    protected void Reset_Click(object sender, EventArgs e)        {            initControl(Page, "isClear");        } * 备注信息: 上传部分自己总结的常用方法的封装,有不足和不完美之处,希望大家指出来,愿意一起 * 主要研究erp,cms,crm,b2b,oa等系统和网站的开发,欢迎有共同追求和学的IT人员一起学习和交流.

iOS之用xib给控件设置圆角、边框效果

xib中为各种控件设置圆角 通过代码的方式设置 @interface ViewController () @property (weak, nonatomic) IBOutlet UIView *myView; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; self.myView.layer.masksToBounds = YES; self.myView.layer.cornerRa

C#控件事件属性大全

C#控件及常用设计整 1.窗体... 1 2.Label 控件... 3 3.TextBox 控件... 4 4.RichTextBox控件... 5 5.NumericUpDown 控件... 7 6.Button 控件... 7 7.GroupBox 控件... 7 8.RadioButton控件... 8 9.CheckBox 控件... 8 10.ListBox 控件... 9 11.ComboBox 控件... 10 12.CheckedListBox 控件... 10 13.Pict

.NET中TextBox控件设置ReadOnly=true后台取不到值三种解决方法

.NET中TextBox控件设置ReadOnly=true后台取不到值三种解决方法 当TextBox设置了ReadOnly=true后要是在前台为控件添加了值,后台是取不到的,值为空,多么郁闷的一个问题经过尝试,发现可以通过如下的方式解决这个问题.感兴趣的朋友可以了解下 当TextBox设置了ReadOnly="true" 后,要是在前台为控件添加了值,后台是取不到的,值为“空” 原理没想通,说不清楚微软是出于什么考虑的,不过有时是要我们能通过前台脚本来填充值,并不希望用户修改其控件内

UI控件tag属性和魔法数字的处理

说明:tag属性有很大的用处,它就好像每个UI控件的id,当多个按钮指向同一个监听方法时,可以给方法带参数UIButton,然后根据不同的tag值 来判断执行哪个按钮的监听事件: - (IBAction)up:(UIButton *)sender // 该方法有四个btn指向,tag值是下边的,即可根据不同tag值执行相应的代码 { //upMoveTag的tag是10 //bottomMoveTag:11 //leftMoveTag:12 //rightMoveTag:13 CGRect re

Android中常用控件及属性

在之前的博客为大家带来了很多关于Android和jsp的介绍,本篇将为大家带来,关于Andriod中常用控件及属性的使用方法,目的方便大家遗忘时,及时复习参考.好了废话不多讲,现在开始我们本篇内容的介绍. 1.控制应用显示的方向: setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);//竖直显示效果. setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LA