上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, &error); ABAddressBookRegisterExternalChangeCallback(addressBook, addressBookChan... 阅读全文
posted @ 2014-12-26 10:08 菜鸟程序猿 阅读(350) 评论(0) 推荐(0) 编辑
摘要: #import @interface LoadingContactData : NSObject// 读取通讯录+ (LoadingContactData *)shareIntance;- (void)getContactData;@end#import "LoadingContactData.h"... 阅读全文
posted @ 2014-12-25 16:54 菜鸟程序猿 阅读(376) 评论(0) 推荐(0) 编辑
摘要: assign: 简单赋值,不更改索引计数-(void)setMyObject:(id)newValue{ _myObject = newValue; }copy: 建立一个索引计数为1的对象,然后释放旧对象-(void)setMyObject:(id)newValue{ if (_myO... 阅读全文
posted @ 2014-12-22 10:33 菜鸟程序猿 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.新建一个single view application2.打开 Info.plist,删除里面的 Launch screen interface file....以及 Main storyboard file base name...3.删除Main.storyboard以及LaunchScr... 阅读全文
posted @ 2014-12-19 14:51 菜鸟程序猿 阅读(150) 评论(0) 推荐(0) 编辑
摘要: + (BOOL)isBetweenFromHour:(NSInteger)fromHour toHour:(NSInteger)toHour{ NSDate *dateFromHour = [self getCustomDateWithHour:fromHour]; NSDate *da... 阅读全文
posted @ 2014-12-19 12:24 菜鸟程序猿 阅读(7504) 评论(0) 推荐(0) 编辑
摘要: // 中国移动:China Mobile#define ChinaMobile @"^13[4-9]\\d{8}$|^15[012789]\\d{8}$|^18[23478]\\d{8}$|^147\\d{8}$"// 中国联通:China Unicom#define ChinaUnicom @"^... 阅读全文
posted @ 2014-12-19 12:18 菜鸟程序猿 阅读(634) 评论(0) 推荐(0) 编辑
摘要: #import @interface UILabel (Create)/** * 创建普通Label * * @param frame frame * @param text text * @param font font * @p... 阅读全文
posted @ 2014-11-06 17:07 菜鸟程序猿 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 九宫格或者其他类型的坐标设置frame.size.width = 60;//设置按钮坐标及大小frame.size.height = 60;frame.origin.x = (i%3)*(60 + 32)+40;frame.origin.y = floor(i/3)*(60 + 24)+60; 阅读全文
posted @ 2014-11-06 16:29 菜鸟程序猿 阅读(365) 评论(0) 推荐(0) 编辑
摘要: #import @interface UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color;@end#import "UIImage+ImageWithColor.h"@implementation UIImage ... 阅读全文
posted @ 2014-11-04 17:10 菜鸟程序猿 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: #import #import #import @interface UIImage (Blur)// 0.0 to 1.0- (UIImage*)blurredImage:(CGFloat)blurAmount;@end#import "UIImage+Blur.h"@implementation... 阅读全文
posted @ 2014-11-04 17:08 菜鸟程序猿 阅读(579) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页