上一页 1 ··· 3 4 5 6 7
摘要: 1.首先不复用static NSString *imageCellIdentifier = @"imageCell";...//这种为复用cell = [tableView dequeueReusableCellWithIdentifier:imageCellIdentifier];//这种为不复用cell = [[[UserCellView alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:imageCellIdentifier] autorelease];2.需要复用tableView有代 阅读全文
posted @ 2012-10-10 16:20 不想当元帅的好兵。 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: 1.UILabel 换行1 versionLabel.lineBreakMode = UILineBreakModeWordWrap;3 versionLabel.numberOfLines = 0;2.UILabel 阴影1 tipLabel.shadowColor = [UIColorwhiteColor];2 tipLabel.shadowOffset = CGSizeMake(1.0, 1.0);3.自定义 View 实现drawRect方法@interface CustomView :UIView@end@implementation CustomView- ... 阅读全文
posted @ 2012-10-10 15:43 不想当元帅的好兵。 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 有人问,你的目标是什么?然后我开始思考,其实我是一个没多大野心的人。也不奢望着像乔布斯那样改变世界。只希望,真正能做出款软件,能够方便一些人。并且自己也可以谋取点利益啥的就更好了。怕被人肉就不自我介绍了。但是可以小小透露下,本人现在大三,性别女。关注移动互联网。好久没有写Blog,以前开blog也就是为了记录记录偶尔无病呻吟的情绪。这次呢,是因为记录下学习状态,一些常用代码,以及遇到问题解决方法可以PO到网上,方便以后查看。 阅读全文
posted @ 2012-10-10 13:35 不想当元帅的好兵。 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7