
IOS
文章平均质量分 71
子尤心声
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
three20搭建
1,three20 官方网站http://three20.info/home2。介绍1)Three20系列之Three20概述http://www.yuephone.com/forum.php?mod=viewthread&tid=7&extra=page%3D12)平生不識Three20,便稱iOS App developer也枉然~htt转载 2013-02-21 16:20:19 · 248 阅读 · 0 评论 -
怎么在加载图片时得到它的加载进度
- (void)viewDidLoad{ [super viewDidLoad]; NSURL* leUrl = [NSURL URLWithString:@"http://bizhi.zhuoku.com/2013/02/19/KTM_350_Freeride/Ktm_350_freeride_06.jpg"]; NSURLRequest* leReq转载 2013-02-21 17:01:36 · 491 阅读 · 0 评论 -
如何在label的字符上添加个删除线
重写drawrect- (void)drawRect:(CGRect)rect{ if (isWithStrikeThrough) { CGSize contentSize = [self.text sizeWithFont:self.font constrainedToSize:self.frame.size]; CGC转载 2013-02-21 17:40:41 · 577 阅读 · 0 评论 -
NSRunLoop的使用
1.NSRunLoop是消息机制的处理模式NSRunLoop的作用在于有事情做的时候使的当前NSRunLoop的线程工作,没有事情做让当前NSRunLoop的线程休眠2.nstimer默认添加到当前NSRunLoop中,也可以手动制定添加到自己新建的NSRunLoop的中[NSTimer schduledTimerWithTimeInterval:转载 2013-03-22 16:46:48 · 650 阅读 · 0 评论 -
XCODE4.6 编译zxing报错解决地址
http://stackoverflow.com/questions/14593291/xcode-4-6-zxing-compile-error-after-xcode-update-4h127/14616402#14616402原创 2013-05-13 09:48:22 · 802 阅读 · 0 评论 -
IOS UITextfield设置右对齐后 开头空格无法右对齐的解决方式
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{ if (range.location == textField.text.length && [string isEqualToString:@原创 2017-04-21 16:37:37 · 1593 阅读 · 0 评论