iOS系统是相对封闭的系统,App各自在各自的沙盒(sandbox)中运行,每个App都只能读取iPhone上iOS系统为该应用程序程序创建的文件夹AppData下的内容,不...
谢谢阅读!
现在对于我们 iOS 开发来说,基本上说不可能不使用第三方轮子啦,毕竟没那么多时间,而且自己造的轮子往往想着成为上图中的最后一个,结果却成了上图中第二个或第一个啦,当然大公司...
//需要AFN //.h //AFNetworking + (void)post:(NSString *)url parameters:(NSDictionary *)par...
//.h //时间转date + (NSDate *)dataWithTime:(NSString *)time; //时间转时间戳 + (NSString *)timeSt...
#define kRadians(RADIAN) (180.0 * RADIAN / M_PI) //.h //点间间距 + (CGFloat)distanceFromPoi...
//.h //encode + (NSString*)encodeString:(NSString*)unencodedString; //decode + (NSStrin...
//.h + (UIImage *)screenshotFrom:(UIView *)view frame:(CGRect)frame; //.m + (UIImage *)...
//.h + (UIImage *)invertedImageWith:(UIImageView *)image height:(NSUInteger)height; //....
//.h#import//地图大头针 @class MZAnnotation; @interface MZMapView : MKMapView //地图 + (MKMapV...
#define kBlackColor [UIColor blackColor] //.h //划线 + (void)drawLineMoveToPoint:(CGPoint...
//.h /** *POST 提交 并可以上传图片目前只支持单张 */ + (void)pushImageWithURL: (NSString *)url // IN pos...
//.h //单个文件的大小,返回多少字节 + (long long)fileSizeFor:(NSString*)filePath; //遍历文件夹获得文件夹大小,返回多少...
//.h //单击 + (void)tapWith:(UIView *)view target:(id)target action:(SEL)action; //单击 + 双...
//.h //注册 + (void)registerLocalNotification; //推送 + (UILocalNotification *)pushLocalNot...