UIButton 的基本用法

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@property(strong,nonatomic) UIButton *btnTest;

@property(strong,nonatomic) UITextField *txtName;

@end

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad

{

[super viewDidLoad];

self.btnTest=[UIButton buttonWithType:UIButtonTypeRoundedRect];

self.btnTest.frame=CGRectMake(100, 100, 150, 44);

[self.btnTest setTitle:@"按钮" forState:UIControlStateNormal];

[self.btnTest setBackgroundColor:[UIColor redColor]];

[self.btnTest addTarget:self action:@selector(testBtn) forControlEvents:UIControlEventTouchCancel];

[self.view addSubview:self.btnTest];

}

-(void)testBtn

{

NSString *name=self.txtName.text;

NSLog(@"%@",name);

NSLog(@"test");

int len=(int)self.txtName.text.length;

if (len==0)

{

NSLog(@"用户名不能为空");

}

else if (len>0&&len<8)

{

NSLog(@"长度不够");

}

else

{

NSLog(@"继续");

}

}

时间: 2024-11-25 09:47:31

UIButton 的基本用法的相关文章

关于UIButton的一些用法

一些常见的属性的方法 UIButton * getVerificationCodeBtn = (UIButton *)[cell.contentView viewWithTag:102]; getVerificationCodeBtn.cornerRadius = 15;//圆角 getVerificationCodeBtn.borderWidth = 1;//边框宽度 getVerificationCodeBtn.borderColor = RGBColor(246, 185, 55);//边

Swift - 按钮(UIButton)的用法

1,按钮的创建 (1)按钮有下面四种类型: UIButtonType.ContactAdd:前面带“+”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.DetailDisclosure:前面带“!”图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.System:前面不带图标,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.Custom:定制按钮,前面不带图标,默认文字颜色为白色,无触摸时的高亮效果 UIButtonType.

Swift UIButton用法

Swift - 按钮(UIButton)的用法 2015-01-15 16:02发布:hangge浏览:23747 1,按钮的创建 (1)按钮有下面四种类型: UIButtonType.ContactAdd:前面带"+"图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.DetailDisclosure:前面带"!"图标按钮,默认文字颜色为蓝色,有触摸时的高亮效果 UIButtonType.System:前面不带图标,默认文字颜色为蓝色,有触

iOS UIButton的基本使用

UIButton的基本用法,平时用的也就是这么多,其他遇到在加 //实例化2种方法 UIButton *btn1 = [[UIButton alloc] init]; UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; //坐标和大小 btn.frame = CGRectMake(100, 100, 100, 100); //背景颜色 btn.backgroundColor = [UIColor redColor]; //设

IOS开发之XCode学习003:UIButton基础

此文学习来源为:http://study.163.com/course/introduction/1002858003.htm 此工程文件实现功能:  1.UIButton的控件基本概念 2.UIButton的创建方法 3.UIButton的类型 4.可显示图片的UIButton 可将准备好的图片直接拖到工程名字UIButton下 ===========================ViewController.m脚本============================== //创建普通按

iOS中UIButton控件的用法及部分参数解释

在UI控件中UIButton是极其常用的一类控件,它的类对象创建与大多数UI控件使用实例方法init创建不同,通常使用类方法创建: + (id)buttonWithType:(UIButtonType)buttonType; 如果使用实例方法创建UIButton对象,如: UIButton *button = [[UIButton alloc]initWithFrame:CGRectMake(100, 300, 100, 50)]; 对象的创建是没有任何问题的,但是当为这个button对象设置一

iOS开发系列之一 - UIButton 用法小结

// 初始化按钮并设置类型 UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect]; // 能够定义的UIButton类型有以下6种: // typedef enum { // UIButtonTypeCustom = 0, 自定义风格 // UIButtonTypeRoundedRect, 圆角矩形 // UIButtonTypeDetailDisclosure, 蓝色小箭头按钮,主要做详细说明用 // UIButto

UIButton基本用法

UIButton(基本用法)Tsummer //初始化button,选择button类型 UIButton *tbutton = [UIButton buttonWithType:UIButtonTypeCustom]; //给定button在view上的位置 tbutton.frame = CGRectMake(20, 20, 280, 20); //设置button填充图片 [tbuttonsetImage:[UIImageimageNamed:@"Tsummer.png"]for

UIButton的最基础用法

UIButton的最基础用法 UIButton (1) 创建显示一个Button      //演示UI中按钮类UIButton使用 //需求: 想要在界面上显示一个按钮 //解决:   使用UIButton按钮类  //<1>创建按钮,一般需要指定按钮的风格 //系统样式的按钮:  UIButtonTypeSystem //如果创建带图片的: 一般选用UIButtonTypeCustom //圆角矩形: ios7不再使用UIButtonTypeRoundedRect //UIButtonTy