类和文件AppDelegate.m#import"AppDelegate.h"
#import"MainViewController.h"
@implementationAppDelegate
-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
self.window=[[UIWindowalloc]initWithFrame:[[UIScr..
分类:
移动开发 时间:
2014-09-11 09:44:42
阅读次数:
395
在做demo时, 发现?UITableViewCell?中的?UIButton?短按一次看不到默认的变灰效果, 停留稍长才能变灰, 比如twitter官方客户端用户头像, 微博的转评赞三按钮。 微博各类客户端的头像和其他按钮也是这样, 头像很...
分类:
移动开发 时间:
2014-09-10 17:59:51
阅读次数:
238
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath{//重用标识符staticNSString*identifider=@"reuse";//去重用队列中根据标识符取可重用的cellAddressBookCell*cell=[tableViewdequeueReusableCellWithIdentifier:identifi..
分类:
其他好文 时间:
2014-09-05 03:24:31
阅读次数:
208
写代码有时和说话一样,要体现层次感,可能是首先罗列要点,然后再逐点 细化。但如果时而说要点,时而谈细节,就会造成听者理解上的障碍。如下的代 码就会有这样的一个问题:重构前:- (UITableViewCell *)tableView:(UITableView *)tableView cellForR...
分类:
移动开发 时间:
2014-09-05 00:52:30
阅读次数:
216
首先重写UITableViewCell的初始化方法:- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (...
分类:
移动开发 时间:
2014-09-04 09:46:27
阅读次数:
195
重构下单元格方法#pragma mark 单元格内容-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{// UITableViewCell...
分类:
其他好文 时间:
2014-09-01 13:57:23
阅读次数:
161
今天在看官方的TableView Guide,突然想起来最近写的一个代码中实现tableViewCell复用的时候有点问题:var cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: identi...
分类:
编程语言 时间:
2014-09-01 12:03:33
阅读次数:
300
- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath{ cell.backgroundColor...
分类:
其他好文 时间:
2014-08-27 10:34:27
阅读次数:
181
[cpp]view plaincopy1.系统默认的颜色设置[cpp]view plaincopy//无色cell.selectionStyle=UITableViewCellSelectionStyleNone;//蓝色cell.selectionStyle=UITableViewCellSele...
分类:
其他好文 时间:
2014-08-26 19:37:06
阅读次数:
180
@interface MyProfileViewCell : UITableViewCell@end@implementation MyProfileViewCell- (void)layoutSubviews{ [super layoutSubviews]; CGRect frame ...
分类:
移动开发 时间:
2014-08-26 13:09:26
阅读次数:
172