摘要:
1、目的 为了按钮上的图片有一个360度动画旋转效果。 2、代码 - (void)changeAction:(UIButton *)changeBtn { CABasicAnimation* rotationAnimation; rotationAnimation = [CABasicAnimati 阅读全文
摘要:
#include "libavutil/log.h" int main(int argc, char *argv[]) { @autoreleasepool { // 关闭 FFmpeg 的日志输出 av_log_set_level(AV_LOG_QUIET); return UIApplicati 阅读全文
摘要:
1、Threads 1.1 进程 进程是指在系统中正在运行的一个应用程序。每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内。 比如同时打开 QQ、Xcode,系统就会分别启动两个进程。通过 “活动监视器” 可以查看 Mac 系统中所开启的进程。 一个程序的一次运行,在执行过程中拥有独 阅读全文
摘要:
1、报错 library not found for -libstdc++.6.0.9 libstdc++、libstdc++.6、libstdc++6.0.9 OpenCV 静态链接 libstdc++ 无论是你 C++ 跨平台编写,还是你引入了某个SDK其内部依赖这个libstdc++,都会导致 阅读全文
摘要:
项目中选择Edit Scheme 给Enviroment Variables添加键值对 OS_ACTIVITY_MODE ——disable 阅读全文
摘要:
UIButton+TimeInterval.h #import <UIKit/UIKit.h> @interface UIButton (TimeInterval) /** 点击时间间隔: 单位(秒) */ @property (nonatomic, assign) NSTimeInterval t 阅读全文
摘要:
Homebrew常用命令: 安装 brew install xxx 卸载 brew uninstall xxx 更新brew本身 brew update 更新所有brew安装的软件:brew upgrade 更新某一个brew安装的软件:brew upgrade xxx 阅读全文
摘要:
1、现象截图 Could not locate device support files. This iPhone 6s is running iOS 11.1 (15B93), which may not be supported by this version of Xcode. 上面的意思是, 阅读全文
摘要:
@interface GC_Demo_Controller () @property(nonatomic, strong) CALayer *gc_layer; @property(nonatomic, strong) Basic_Button *button; @end @implementati 阅读全文
摘要:
// 获取压缩包数据 NSArray *activityItems = @[[NSURL fileURLWithPath:self.ui_path]]; UIActivityViewController *activityVC = [[UIActivityViewController alloc] 阅读全文
摘要:
// 文件大小格式化显示 - (NSString *)convert_FileSize:(long long)file_size { long kb = 1024; long mb = kb * 1024; long gb = mb * 1024; if (file_size >= gb) { re 阅读全文
摘要:
1、简介 SSZipArchive是iOS和Mac上一个简单实用的压缩和解压插件。用途包括: 1.解压zip文件; 2.解压密码保护的ZIP文件; 3.创建新的zip文件; 4.追加文件到现有的压缩; 5.压缩文件; 6.压缩NSData(带有文件名) SSZipArchive的GitHub地址:h 阅读全文
摘要:
1、手动添加直接拖SSZipArchive库进来后报错 Error Domain=SSZipArchiveErrorDomain Code=-2 "failed to open file in zip file" 2、解决办法 使用SSZipArchive 注意事项中说到: Add the foll 阅读全文
摘要:
// 两个区域相等 if(CGRectEqualToRect(rect1, rect2)) { } // 两个点相等 if(CGPointEqualToPoint(point1, point2)) { } // 两个size相等 if(CGSizeEqualToSize(size1, size2)) 阅读全文
摘要:
// 当一个控件被添加到父控件中就会调用 - (void)didMoveToSuperview { [super didMoveToSuperview]; } // 当一个控件即将被添加到父控件中会调用 - (void)willMoveToSuperview:(UIView *)newSupervi 阅读全文
摘要:
webview.scrollView.showsHorizontalScrollIndicator = NO; webview.scrollView.showsVerticalScrollIndicator = NO; 阅读全文
摘要:
Xcode打包提交提示: WARNING ITMS-90901: "Missing full-screen support for the latest iPad mini display. The “GC_iOS.app” bundle includes UIRequiresFullScreen= 阅读全文
摘要:
1、需求场景 客户端需要将一段时间内的开屏广告图都预先下载到本地,确保用户在网络不佳甚至断网的情况下都能看到开屏广告; 需要预先拿到UIImage实例对象,动态修改图片的色调,再设置图片。 2、解决办法 2.1 使用SDWebImagePrefetcher来下载图片 将要下载的图片地址集合传入,SD 阅读全文
摘要:
1、代码 #import <WebKit/WebKit.h> NSString *html_str = @"<p><b><u><span style="color: rgb(51, 51, 51); text-align: right;">介绍</span><span style="color: r 阅读全文
摘要:
1、报错提示 1.1 UIAlertController Terminating app due to uncaught exception 'NSGenericException', reason: 'Your application has presented a UIAlertControll 阅读全文