标签:
??//object c的switch中无法使用对象的解决办法
在条件代码中 (case X:) 给代码片段加上大括号 {} 即可使用引进来的对象
// textFieldShouldReturn 函数写了,但是按键到 return 无法让键盘消失
因为你的文本框没有添加委托。添加委托的方法,右键文本框,把 outlets 下的+拉到 file‘s owner上就可以了。 或者在加载事件中添加 textFeild.delegate=self;
// numberOfRowsInSection 问题
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 1; // 当返回值为 0 时,- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {} 不会渲染执行
}
// tableView 没有数据
可能是 tableView没有绑定事件,或者在加载事件中添加 self.tableView.delegate = self;self.tableView.dataSource = self;
//添加事件对象
self.tableView.target = self;
//单击方法
self.tableView.action = @selector(singleClickAction:);
//允许空 Selection
self.tableView.allowsEmptySelection = YES;标签:
原文地址:http://my.oschina.net/jack088/blog/502795