xib 在UIView上拖拽了表格單元tableViewCell上去 還需要怎麼做才能實現點擊選擇該表格單元,該表格單元會變灰色並響應某事件?
沒搞清楚你要怎麼樣, Controller 實現代理
設置 tableView.delegate=self;
tableView.dataSource=self;
然後實現 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//在這個方法裡就可以監聽到 如果是不同的cell 響應不同的方法 如果位置固定的話 你可以這樣做
if (indexPath.section==0) {
if (indexPath.row==0){
//....
}
}
}
或者你是需要這樣的:
//添加關聯的方法 Tap:
UITapGestureRecognizer *Tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(Tap:)];
Tap.numberOfTapsRequired = 1;//點擊一次觸發
Tap.numberOfTouchesRequired = 1;//點擊需要的手指數量
[UIView addGestureRecognizer:Tap]; //
-(void)Tap
{
// do what you want
}