2012年8月28日

如果UITableView中某一行不允许点击变蓝色如何设置?

摘要: 要在cellForRowAtIndexPath的代理方法中,对应的cell加入cell.selectionStyle=UITableViewCellSelectionStyleNone;下面是我的开发代码,进攻参考- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.section == 0) { static NSString *TableViewCell = @"TableViewCell" 阅读全文

posted @ 2012-08-28 10:48 刚冲出起跑线的人 阅读(3231) 评论(0) 推荐(0) 编辑

服务器返回的json数据,通过本地解析调用SBjson的类

摘要: 下面是我处理本地解析json的代码:是在网络返回数据都已经获取到之后执行的,如果返回true就alert出来。如果返回的是error,这个数据是通过json数据封装的,就可以通过SBJSON解析,下面调用的是解析的代码。在类开始的地方还需要加入#import "SBJson.h" 主要是这里面加入json的类包- (void)connectionDidFinishLoading:(NSURLConnection *)connection { if (nil != BusyAlert) [BusyAlertdismissWithClickedButtonIndex:0anim 阅读全文

posted @ 2012-08-28 10:44 刚冲出起跑线的人 阅读(479) 评论(0) 推荐(0) 编辑

ios导航条UINavigationController中返回title的处理

摘要: 下面的内容是网上参考的,感觉很实用,非常好针对性强,来自博客http://ddkangfu.blog.51cto.com/311989/459641 新写的App中需要使用UINavigationController对各个页面进行导航,但由于第一级页面的title较长,在进入第二级页面后返回按钮leftButtonItem的title就会变得很长,对NavigationBar空间占用很大,而且不美观,于是使用代码对leftButtonItem的title文本进行修改,无论是设置self.navigationItem.leftBarButtonItem.title = @"返回&quo 阅读全文

posted @ 2012-08-28 10:40 刚冲出起跑线的人 阅读(689) 评论(0) 推荐(0) 编辑

导航