2012年7月30日
摘要: (1)避免同时点击多个按钮; [myButtonsetExclusiveTouch:YES]; 设置确保当myButton点击时,其他按钮不响应;(2)避免同时点击UITableView中多个row-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{ if ([tableView indexPathForSelectedRow] != nil) //如果已经选定某cell,则不允许同时选择另一Cell。 returnnil; else re... 阅读全文
posted @ 2012-07-30 14:29 wawacool 阅读(480) 评论(0) 推荐(0) 编辑