摘要:
最近更新应用,iOS14后被拒绝了,被拒拒原因如下; Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage We noticed that your app requests the user’s consent to acc 阅读全文
摘要:
本文借鉴https://www.jianshu.com/p/6a25b18577eb,感谢博主的分享。 本文主要讲解微信配置Universal Link问题,以及公司项目下多个app配置方案。 注意事项(很重要) 1.几个app共用一个pple-app-site-association文件,注意不同 阅读全文
摘要:
终端运行 pod setup 阅读全文
摘要:
本文借鉴:https://www.jianshu.com/p/70b0af4d0ec7 以及 https://www.jianshu.com/p/31d1ca4999c6 ffmpeg 相关命令行文章 http://www.cnblogs.com/wainiwann/p/4128154.html 简 阅读全文
摘要:
参考:https://github.com/molon/MLAudioRecorder 非常感谢 可以借助demo进行学习,demo地址: https://github.com/qiweiqiang10/iOS-MP3.git .h 文件 #import <UIKit/UIKit.h> @inter 阅读全文
摘要:
分类在使用runtime做方法交换时无需引入到相应文件,直接会全局生效,在一个工程中一个类给其创建两个分类,方法用runtime交换实现,会否不起作用. 阅读全文
摘要:
文本着重点在自己打包时包含第三方库,同时工程在用问题的解决.如何打包framewprk的文章比较多本文不再重点讲述; 本文借鉴了:https://www.jianshu.com/p/cb17d6bae5a0 iOS中,Framework和.a的打包及使用 https://www.jianshu.co 阅读全文
摘要:
import UIKit class XZCircleView: UIView { let backGroundLayer = CAShapeLayer.init()///背景白色细曲线 let progressLayer = CAShapeLayer.init()///进度真是数值曲线 var e 阅读全文
摘要:
最新swift4.0 对图片进行指定尺寸大小及不超过多大体积的压缩 阅读全文
摘要:
class func isPassword(pasword : String) -> Bool { let pwd = "^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$" let regextestpwd = NSPredicate(format: "SEL 阅读全文