摘要: //// ThreadPool.h/** * 继承此类,重写execute方法 */@interface WorkItem : NSObject-(void)execute;@end@class ThreadPoolInner;@interface ThreadPool : NSObject { ThreadPoolInner* _inner;}-(id)initWithThreadCount:(NSInteger)threadCount;-(void)addWorkItem:(WorkItem*)workItem;-(void)cancelAllWorkItems;-(void)de... 阅读全文
posted @ 2011-12-05 10:56 痴人指路 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 本文由cocoachina会员1056975026分享iCloud需要xcode4.2 IOS5 sdk 请先做好准备工作:1.需要传件一个新的app id,要是有了一个的话,保证着个app id 不是一个通配符的那种。2.创建完成之后,你要做的是开启这项功能,就跟开发推送一样,然后在创建一个新的Provisional Profile 3.选择工程的summary,滚动到entitlement点击entitlements,xcode会自动的创建一个*.entitlements 4.点击创建的*.entitlements,分别把pist列表里的三个字段都添上内容,格式为 (Team_ID.com 阅读全文
posted @ 2011-12-05 10:39 痴人指路 阅读(315) 评论(0) 推荐(0) 编辑
摘要: UILongPressGestureRecognizer *longPressGR = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; longPressGR.minimumPressDuration = 0.2; [self addGestureRecognizer:longPressGR]; [longPressGR release];- (void)handleLongPress:(UIGestureRecognizer *)gestureRe.. 阅读全文
posted @ 2011-12-05 10:28 痴人指路 阅读(157) 评论(0) 推荐(0) 编辑