码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 小细节,注意事项

时间:2015-09-08 17:00:21      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

??//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;


IOS 小细节,注意事项

标签:

原文地址:http://my.oschina.net/jack088/blog/502795

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!