主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activity Animation等等。 ....
分类:
移动开发 时间:
2014-09-01 09:18:22
阅读次数:
470
+ (instancetype)cellWithTableView:(UITableView *)tableView{ static NSString *ID = @"Cell"; Cell *cell = [tableView dequeueReusableCellWithIdentifier.....
分类:
其他好文 时间:
2014-08-30 13:46:19
阅读次数:
212
动态切换tableView中的cell的种类为什么要动态切换tableView中cell的种类呢?如果项目经理不出这种需求,你也就见不到这篇文章了:)效果:源码:首先,你要准备3种cell,直接继承系统的就行了.//// RootViewController.m// ChangeCell////.....
分类:
其他好文 时间:
2014-08-29 21:15:58
阅读次数:
255
效果如上。只要补上以下方法://设置多于的分割线-(void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view = [UIView new]; view.backgroundColor = [UIColor clearC.....
分类:
移动开发 时间:
2014-08-29 10:57:27
阅读次数:
224
影响 UITableView 滚动的流畅性的原因1、 在代理方法中做了过多的计算占用了 UI 线程的时间2、同上3、Cell 中 view 的组织复杂关于第一点,首先要明白 tableview 的代理(这里指 datasource 和 delegate 的那套方法,下同)方法的调用顺序,和时机。对于...
分类:
其他好文 时间:
2014-08-28 22:25:26
阅读次数:
342
相信大家在做项目时有遇到需要实现这种功能---实现单选某一个cell表示选中这个功能的实现只需要在两个方法中code即可首选我们公开一个属性@property(nonatomic,strong)NSIndexPath *lastPath;并且对其synthesize主要是用来接收用户上一次所选的ce...
分类:
移动开发 时间:
2014-08-28 16:05:39
阅读次数:
243
1、首先看TableView的头文件
#include "cocos2d.h"
#include "extensions/cocos-ext.h"//包含TableView的头文件
#include "ItemAdapter.h"//适配类
USING_NS_CC;
//事件回调函数
typedef std::function menuCallBack;
//继承类
class MenuTabl...
分类:
其他好文 时间:
2014-08-27 16:44:08
阅读次数:
195
- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath{ cell.backgroundColor...
分类:
其他好文 时间:
2014-08-27 10:34:27
阅读次数:
181
对TableView进一步理解 1. 创建项目。-- 省市级联小例子。 2. 添加.plist文件。可以理解为数据字典。键值对(Key - Value) 2.1 cities.plist - 城市 2.2 provinces.plist - 省份 3. 常用方法: 3.1...
分类:
其他好文 时间:
2014-08-26 15:20:26
阅读次数:
260
一、 创建项目 storyboard 。二、 往ViewController上拖一个UITableView上去。 此时,建立连线,右键TableView,设置datasource,到Controller上。三、 在.h文件中,UIViewController要遵守UITableViewData...
分类:
其他好文 时间:
2014-08-26 11:29:15
阅读次数:
187