博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发-按钮的基本使用
阅读量:5722 次
发布时间:2019-06-18

本文共 1389 字,大约阅读时间需要 4 分钟。

//

//  ViewController.m

//  05-用代码创建按钮

//

//  Created by vic fan on 2017/7/30.

//  Copyright © 2017 李洪强. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

 

@end

 

@implementation ViewController

//视图加载完毕后调用,一般用来初始化(添加)控件,这个方法是系统主动调用的

//

- (void)viewDidLoad {

    [super viewDidLoad];

    //1.创建一个按钮对象

    UIButton *headBtn = [[UIButton alloc]init];

    //2.设置按钮的frame

    headBtn.frame = CGRectMake(30, 30, 120, 120);

    //3.添加到视图上

    [self.view addSubview:headBtn];

    //4.设置图片

    //4.1 设置普通状态的图片

    UIImage *nomalImage = [UIImage imageNamed:@"btn_01"];

    [headBtn setBackgroundImage:nomalImage forState:UIControlStateNormal];

    UIImage *hightImage = [UIImage imageNamed:@"btn_02"];

    [headBtn setBackgroundImage:hightImage forState:UIControlStateHighlighted];

    //5.设置文字

    //5.1 设置普通状态下的文字

    [headBtn setTitle:@"摸我吧" forState:UIControlStateNormal];

    //设置高亮状态的文字

    [headBtn setTitle:@"摸我干啥" forState:UIControlStateHighlighted];

    //6.设置文字颜色

    [headBtn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

    //设置高亮状态文字颜色

    [headBtn setTitleColor:[UIColor blueColor] forState:UIControlStateHighlighted];

    //7 添加按钮的点击事件

//    forControlEvents  监听的是什么事件

    [headBtn addTarget:self action:@selector(benClicked) forControlEvents:UIControlEventTouchUpInside];

    

}

 

- (void)benClicked{

    NSLog(@"我们快下课了");

    

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

 

@end

转载地址:http://flzwx.baihongyu.com/

你可能感兴趣的文章
Activity的生命周期整理
查看>>
【记录】JS toUpperCase toLowerCase 大写字母/小写字母转换
查看>>
在 Linux 系统中安装Load Generator ,并在windows 调用
查看>>
Visifire charts ToolBar
查看>>
SQL中的字符串字段根据某字段实现自增
查看>>
Mysql查询
查看>>
数据传输流程和socket简单操作
查看>>
利用广播实现ip拨号——示例
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>
1112: 零起点学算法19——输出特殊值
查看>>
Ubuntu16.04下ZeroC ICE的安装与使用示例(Qt C++ 和 Java)
查看>>
自制操作系统-最简单的系统hello World
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>
strcspn
查看>>
OpenSSL初瞻及本系列的博文的缘由
查看>>
ISO8583接口的详细资料
查看>>
tmux不自动加载配置文件.tmux.conf
查看>>
经验分享:JavaScript小技巧
查看>>