代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
给UIButton添加(类别)方法,方便批量创建button
作者:
Dezai.CN
/ 发布于
2013/8/20
/
851
.h // // UIButton+Create.h // // Created by 魏建科 on 13-7-25. // Copyright (c) 2013年 魏建科. All rights reserved. // #import <UIKit/UIKit.h> @interface UIButton (Create) + (UIButton*) createButtonWithFrame: (CGRect) frame Target:(id)target Selector:(SEL)selector Image:(NSString *)image ImagePressed:(NSString *)imagePressed; + (UIButton *) createButtonWithFrame:(CGRect)frame Title:(NSString *)title Target:(id)target Selector:(SEL)selector; @end .m // // UIButton+Create.m // // Created by 魏建科 on 13-7-25. // Copyright (c) 2013年 魏建科. All rights reserved. // #import "UIButton+Create.h" @implementation UIButton (Create) + (UIButton*) createButtonWithFrame: (CGRect) frame Target:(id)target Selector:(SEL)selector Image:(NSString *)image ImagePressed:(NSString *)imagePressed { UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom]; [button setFrame:frame]; UIImage *newImage = [UIImage imageNamed: image]; [button setBackgroundImage:newImage forState:UIControlStateNormal]; UIImage *newPressedImage = [UIImage imageNamed: imagePressed]; [button setBackgroundImage:newPressedImage forState:UIControlStateHighlighted]; [button addTarget:target action:selector forControlEvents:UIControlEventTouchUpInside]; return button; } + (UIButton *) createButtonWithFrame:(CGRect)frame Title:(NSString *)title Target:(id)target Selector:(SEL)selector { UIButton * button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button setFrame:frame]; [button setTitle:title forState:UIControlStateNormal]; [button addTarget:target action:selector forControlEvents:UIControlEventTouchUpInside]; return button; } @end 使用方法,首先在要使用的ViewController 包含#import "UIButton+Create.h" 然后使用方法 - (void)viewDidLoad { [super viewDidLoad]; [self.view addSubview:[UIButton createButtonWithFrame:CGRectMake(0, 0, 160, 40) Title:@"测试" Target:self Selector:@selector(buttonPressed:)]]; [self.view addSubview:[UIButton createButtonWithFrame:CGRectMake(0, 100, 160, 40) Target:self Selector:@selector(buttonPressed:) Image:@"这个是你给这个Button设置的默认图片" ImagePressed:@"button点击后显示的高亮的图片"]]; } - (void)buttonPressed:(id)sender { }
试试其它关键字
UIButton
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3