UITableView,在cell中添加按钮

UITableView,在cell中添加按钮  

2011-07-29 22:33:27|  分类: IOS|字号 订阅

http://blog.sina.com.cn/s/blog_833996210100rs53.html

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

 

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    }

    

    // Configure the cell...

  

if (indexPath.section == 0) {

if (cell == nil) {

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:CellIdentifier] autorelease];

}

cell.textLabel.text = [self.message1 objectAtIndex:indexPath.row];

}

 

if (indexPath.section == 1) {

if (indexPath.row == 0) {

if (cell == nil) {

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

}

             //cell中添加UISegmentedControl,分段控件

 

 

 

 

UIButton *btn3 = [UIButton buttonWithType:UIButtonTypeRoundedRect];

btn3.frame = CGRectMake(10.0f, 0.0f, 150.0f, 44.0f);

[btn3 setTitle:@"粉丝" forState:UIControlStateNormal];

[btn3 addTarget:self action:@selector(onClick3:) forControlEvents:UIControlEventTouchUpInside];

[cell addSubview:btn3];

 

UIButton *btn4 = [UIButton buttonWithType:UIButtonTypeRoundedRect];

btn4.frame = CGRectMake(160.0f, 0.0f, 150.0f, 44.0f);

[btn4 setTitle:@"话题" forState:UIControlStateNormal];

[btn4 addTarget:self action:@selector(onClick4:) forControlEvents:UIControlEventTouchUpInside];

[cell addSubview:btn4];

}

}

    return cell;

}




UIbutton作为简单且频繁被使用的控件,其地位在整个app开发中不可小视。在IB中使用button相对来说很简单,很容易上手,但在多视图开发中button通常会被即时生成,并设置其属性和功能,即通过代码生成。如下是我对button的理解。

  //创建圆角button

     UIButton *button = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];      

  //指定button的位置和大小

     button.frame = CGRectMake(10, 10, 7575);

  //给button设置标签,用来辨别点击的是哪个button,常用在委托方法中。

     button.tag = 0;

  //定义按钮标题

     [button setTitle:@"Button Title" forState:UIControlStateNormal];

  //定义按钮标题字体格式

     [button.titleLabel setFont:[UIFont boldSystemFontOfSize:20]];

  //给button添加委托方法,即点击触发的事件。

     [button addTarget:selfaction:@selector(touchButton1:)  forControlEvents :UIControl EventTouchUp Inside];

  //给button添加图片 

     [button setImage:[UIImageimageNamed:@"blue_bg(2).png"forState:UIControlStateNormal];

  //将button加入视图当中

     [view addSubview:button];

 

使用技巧:

button不仅可以用来加载图片还可以加载label来实现特定文本的显示。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值