如果我直接添加按鈕,一切都很順利。我真的很想將它添加到視圖中,仍然可以點擊它。這裏的代碼:在UITableView UIView中的UIButton =無法點擊按鈕
UIView *containerView =
[[[UIView alloc]
initWithFrame:CGRectMake(0, 0, 300, 60)]
autorelease];
UIButton *footerButton = [UIButton buttonWithType:UIButtonTypeCustom];
footerButton.frame = CGRectMake(10, 10, 300, 40);
[footerButton addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
[containerView addSubview:footerButton];
如何使用'containerView'?你做'[tableView addSubview:containerView]',或者在表格視圖單元格中使用它?您應該嘗試使用UIButtonTypeRoundedRect並查看它是否正在進行交互。 – tia 2010-10-15 03:27:33
我在頁腳中使用 – gurghet 2010-10-15 12:56:30