【代码笔记】iOS-UITableView上的button点击事件_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】iOS-UITableView上的button点击事件

【代码笔记】iOS-UITableView上的button点击事件

 2017/8/9 11:31:20  弦外雨  程序员俱乐部  我要评论(0)
  • 摘要:代码。ViewController.h#import<UIKit/UIKit.h>@interfaceViewController:UIViewController<UITableViewDataSource,UITableViewDelegate>{UITableView*myTableView;NSArray*dataArr;}@endViewController.m#import"ViewController.h"#import"viewTableViewCell
  • 标签:事件 笔记 view iOS 代码

代码。

ViewController.h

class="cnblogs_code_copy" style="font-size: 18px">复制代码
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
<UITableViewDataSource,UITableViewDelegate>
{
    UITableView *myTableView;
    NSArray *dataArr;
}


@end
复制代码

 

ViewController.m

复制代码
#import "ViewController.h"
#import "viewTableViewCell.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    //UITableView
    [self initTableView];

}
#pragma -mark -functions
-(void)initTableView
{
    
    myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 100, 320, 400)];
    myTableView.backgroundColor=[UIColor whiteColor];
    myTableView.dataSource=self;
    myTableView.delegate=self;
    [self.view addSubview:myTableView];
    
}
#pragma -mark -UITableViewDelegate
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 5;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *strID=@"cell";
    viewTableViewCell *cell=(viewTableViewCell *)[tableView dequeueReusableCellWithIdentifier:strID];
    if (nil==cell) {
        cell=[[viewTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strID];
    }
    [cell.btn addTarget:self action:@selector(doClickButton:) forControlEvents:UIControlEventTouchUpInside];
    
    return cell;
    
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 40;
    
}
#pragma -mark -doClickButton
-(void)doClickButton:(UIButton *)btn
{
    NSLog(@"--doClickButton-----");
}




- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
复制代码
发表评论
用户名: 匿名