摘要: 关于ALAssetsLibrary的简单使用有两个方面: 第一:存储图片/视频方法如下: 简单说明: orientation为储存图片时的具体操作: typedef NS_ENUM(NSInteger, ALAssetOrientation) { ALAssetOrientationUp // de 阅读全文
posted @ 2016-04-20 18:28 超超不会飞55 阅读(2721) 评论(0) 推荐(0) 编辑
摘要: IPhone4 * 2010年发布。 * A4单核处理器。 * 3.5英寸Retina显示屏(视网膜屏幕),960x640像素分辨率。 * 后置摄像头500万像素。 * 前置摄像头30万像素。 IPhone4s * 2011年发布 * A5双核处理器。 * 3.5英寸,960x640像素分辨率。 * 阅读全文
posted @ 2016-04-19 16:42 超超不会飞55 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 首先,VC中添加#import <MobileCoreServices/MobileCoreServices.h> 使用(NSString *) kUTTypeImage定义在其中 判断是否授权: AVAuthorizationStatusNotDetermined = 0,//未明确 AVAuth 阅读全文
posted @ 2016-04-15 19:07 超超不会飞55 阅读(455) 评论(0) 推荐(0) 编辑
摘要: linux系统获取时间戳的方法:time() ; 时间戳转换成需要的时间格式: 另外这里有时区的问题,转换为系统时区: localDate就是你要的date了~ 时间转换时间戳非常简单: date.timeIntervalSince1970; 这就是数据的时间戳了。 阅读全文
posted @ 2016-04-11 14:13 超超不会飞55 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 推荐播放器: LRLAVPlayer相对易懂好修改,调整添加内容。 https://github.com/codeWorm2015/videoPlayer 依赖约束,完成~ 另外,此代码并不完美,需要修改,下面指出一点,需要播放本地视频的在下载的代码中修改如下: 须知:网络播放格式:Http://  阅读全文
posted @ 2016-03-15 16:56 超超不会飞55 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 推荐第三方库: https://github.com/nicklockwood/FXBlurView ios8后有相应的系统类和方法很简单如下   :   阅读全文
posted @ 2016-03-15 12:34 超超不会飞55 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 视频压缩格式: /*! @constant AVFileTypeQuickTimeMovie @abstract A UTI for the QuickTime movie file format. @discussion The value of this UTI is @"com.apple.q 阅读全文
posted @ 2016-03-10 10:43 超超不会飞55 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: //在[UIDevice currentDevice]中的属性 @property(nonatomic,readonly,strong) NSString *name; // e.g. "My iPhone" @property(nonatomic,readonly,strong) NSString 阅读全文
posted @ 2016-03-08 10:39 超超不会飞55 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 在github上寻找的经典demo //以view为继承类 LazyFadeInView-master https://github.com/itouch2/LazyFadeInView //以Label为继承类 RQShineLabel-master https://github.com/zipm 阅读全文
posted @ 2016-03-08 10:30 超超不会飞55 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 富文本,顾名思义就是丰富的文本格式,本文demo使用NSMutableAttributedString AttributedString的创建方式,下面研究下AttributedString究竟可以设置哪些属性,具体来说,有以下21个: // NSFontAttributeName 设置字体属性,默 阅读全文
posted @ 2016-03-08 10:24 超超不会飞55 阅读(5279) 评论(1) 推荐(0) 编辑