UIButton 的基本用法

Posted 唐唐_010

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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(@"继续");

    }

}

 

以上是关于UIButton 的基本用法的主要内容,如果未能解决你的问题,请参考以下文章

关于UIButton的一些用法

各种STL的基本用法

gcc基本用法

Flutter AppBar基本用法、TabBar基本用法、自定义TabBar

linux 详解useradd 命令基本用法

iOS UIScrollView 的基本用法