-?(BOOL)tableView:(UITableView?*)tableView?canEditRowAtIndexPath:(NSIndexPath?*)indexPath
{????return?YES;
}
-?(UITableViewCellEditingStyle)tableView:(UITableView?*)tableView?editingSt...
分类:
移动开发 时间:
2015-07-21 17:29:15
阅读次数:
786
滑动出现类似iPhone短信出现按钮的效果不啰嗦了 上代码关键方法如下- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{ return YES;}- (UITabl...
分类:
其他好文 时间:
2015-07-21 14:35:32
阅读次数:
295
SDWebImage的知名度就不用说了,github上近10k的star,国内外太多的App使用其进行图片加载。但是最近在使用过程中发现,在UITableView中不断加载更多的内容,使用SDWebImage会造成内存占用越来越大,导致memory warning最终terminate,稍微找了下问...
分类:
Web程序 时间:
2015-07-21 14:29:00
阅读次数:
401
在ios的UI中UITableView是个常用且强大的控件基本使用:1>设置代理,一般把控制器设为代理:self.tableView.delegate = self;2>遵守代理的协议且实现方法 协议:代理的协议:UITableViewDelegate;资源的协议:UITableViewSourc....
分类:
其他好文 时间:
2015-07-21 14:16:26
阅读次数:
93
UITableView的常用属性:分割线颜色设置:1》设置separatorStyle: 分割线的颜色方法:tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;2》设置separatorColor 不用系统枚举的值,自...
分类:
其他好文 时间:
2015-07-21 14:15:51
阅读次数:
80
一、实现效果 二、实现代码1.数据模型部分YYQQGroupModel.h文件 1 // 2 // YYQQGroupModel.h 3 // 02-QQ好友列表(基本数据的加载) 4 // 5 // Created by apple on 14-5-31. 6 // Copyrig...
分类:
移动开发 时间:
2015-07-21 12:36:33
阅读次数:
250
一、项目结构和plist文件二、实现代码1.说明:主控制器直接继承UITableViewController // YYViewController.h// 02-QQ好友列表(基本数据的加载)//// Created by apple on 14-5-31.// Copyright (c)...
分类:
移动开发 时间:
2015-07-21 10:36:21
阅读次数:
293
最近流行的一种界面效果,是瀑布流的header固定,也叫sticky header或者parallax。对于UITableView,可以比较方便地让table header固定,但是对于UICollectionView,原生的iOS API比较难以实现。本文推荐一个开源组件,专门用于实现这种效果...
分类:
Web程序 时间:
2015-07-21 06:49:39
阅读次数:
232
ios开发:数据源(设置UITableVIew行,组等、全局刷新数据、选定行刷新数据)、自定义UITableViewCell(控件初始化、控件布局、重用标识符、UITableViewCell风格)、数据初始化(静态方法、动态方法、enumarateObjectsUsingBlock:^(id obj...
分类:
移动开发 时间:
2015-07-21 01:30:53
阅读次数:
171
一、一个简单的英雄展示程序NJHero.h文件代码(字典转模型) 1 #import 2 3 @interface NJHero : NSObject 4 /** 5 * 头像 6 */ 7 @property (nonatomic, copy) NSString *icon; 8 /**...
分类:
移动开发 时间:
2015-07-20 14:24:09
阅读次数:
110