随笔 - 399,  文章 - 0,  评论 - 7,  阅读 - 21万
01 2019 档案
swift4.2 - 一个自定义view弹框
摘要:import UIKit /* * 注册协议view:没找到 UI原图,咱不实现 */ class JYRegisterProtocolView: UIView { /// 点击同意协议的回调 private var clickSelectedBtnBlock:((_ isSelected:Bool) -> Void)? /// 点击完成按钮的回... 阅读全文
posted @ 2019-01-24 16:24 懂事长qingzZ 阅读(938) 评论(0) 推荐(0) 编辑
swift4.2 打印devicetoken
摘要:Swift3.1的DeviceToken打印的是32Byteshttps://www.jianshu.com/p/fed585eef7c1 阅读全文
posted @ 2019-01-22 16:53 懂事长qingzZ 阅读(990) 评论(0) 推荐(0) 编辑
swift4.2 - UIDynamic
摘要:1. SB放上俩 imageview,拖线成类属性 阅读全文
posted @ 2019-01-22 09:44 懂事长qingzZ 阅读(268) 评论(0) 推荐(0) 编辑
swift - 16进制颜色扩展(1.支持# 2.支持不带# , 3支持带0X)
摘要:/** * 设置16进制颜色: * 可识别类型 * 1:有# * 2:没有# * 3:含有0X */ extension UIColor{ class func hexadecimalColor(hexadecimal:String)->UIColor{ var cstr = hexadecimal.trimmingCharacters(in... 阅读全文
posted @ 2019-01-22 09:41 懂事长qingzZ 阅读(164) 评论(0) 推荐(0) 编辑
iOS 10 之后权限设置
摘要:详情查看: https://cloud.tencent.com/developer/article/1339074 https://www.jianshu.com/p/58cf8b21f268 详情查看: https://cloud.tencent.com/developer/article/133 阅读全文
posted @ 2019-01-21 10:45 懂事长qingzZ 阅读(175) 评论(0) 推荐(0) 编辑
swift - 加速器/摇一摇功能
摘要:import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } override func motionBegan(_ motion: UIEvent.EventSubtype, with ev... 阅读全文
posted @ 2019-01-18 11:45 懂事长qingzZ 阅读(280) 评论(0) 推荐(0) 编辑
swift - iOS10之后的加速器
摘要:import UIKit //1.加速器框架 import CoreMotion class ViewController: UIViewController { //1.创建运动管理者 必须设置为 全局的 let manager = CMMotionManager() override func viewDidLoad() { sup... 阅读全文
posted @ 2019-01-18 10:56 懂事长qingzZ 阅读(190) 评论(0) 推荐(0) 编辑
Swift常用第三方库
摘要:网络 Alamofire:http网络请求事件处理的框架。 Moya:这是一个基于Alamofire的更高层网络请求封装抽象层。 Reachability.swift:用来检查应用当前的网络连接状况。 综合 Perfect:swift的服务器端开发框架(针对于移动后端开发、网站和web应用程序开发) 阅读全文
posted @ 2019-01-18 10:35 懂事长qingzZ 阅读(1001) 评论(0) 推荐(1) 编辑
xcode 更新svn/Git后发现模拟器显示No Scheme问题
摘要:这个是由于XXX..xcodeproj包中xcuserdata文件夹中user.xcuserdatad文件夹名字的问题...user.xcuserdatad文件夹的名字,不是当前用户的名字,就会显示no scheme. 解决办法:手动更改(或者删除)后,重启xcode就可以。如果仍然显示为no sc 阅读全文
posted @ 2019-01-18 10:11 懂事长qingzZ 阅读(602) 评论(0) 推荐(0) 编辑
iOS - 抖音效果
摘要:抖音的转场动画—iOS https://www.jianshu.com/p/29b0165de712 抖音的上下滑实现—iOS https://www.jianshu.com/p/e8799510c7aa 阅读全文
posted @ 2019-01-17 13:29 懂事长qingzZ 阅读(376) 评论(0) 推荐(0) 编辑
swift4.2 - 距离传感器
摘要:import UIKit class ViewController: UIViewController { deinit { NotificationCenter.default.removeObserver(self) } override func viewDidLoad() { super.viewDidLoad() ... 阅读全文
posted @ 2019-01-17 11:29 懂事长qingzZ 阅读(320) 评论(0) 推荐(0) 编辑
iOS-清除Xcode所有的描述文件
摘要:https://www.jianshu.com/p/d6a9f9f09926 阅读全文
posted @ 2019-01-17 11:13 懂事长qingzZ 阅读(552) 评论(0) 推荐(0) 编辑
swift - 本地通知2 - 啰嗦版
摘要:1. 2.VC里面 阅读全文
posted @ 2019-01-16 17:28 懂事长qingzZ 阅读(244) 评论(0) 推荐(0) 编辑
OC 开发规范指南 - 个人见解写的很好
摘要:纽约时报 移动团队 Objective-C 规范指南 这份规范指南概括了纽约时报 iOS 团队的代码约定。 介绍 关于这个编程语言的所有规范,如果这里没有写到,那就在苹果的文档里: • Objective-C 编程语言 • Cocoa 基本原理指南 • Cocoa 编码指南 • iOS 应用编程指南 目录 • 点语法 • 间距 • 条件判断 • 三目运算符 • 错误处理 • 方法 • 变量 ... 阅读全文
posted @ 2019-01-16 12:00 懂事长qingzZ 阅读(400) 评论(0) 推荐(0) 编辑
swift - scrollview 判断左右移动, 以及上下两个view联动
摘要:核心代码 1. 2. 3. 界面代码VFL 阅读全文
posted @ 2019-01-16 11:21 懂事长qingzZ 阅读(1017) 评论(0) 推荐(0) 编辑
swift - 本地通知
摘要:1. AppDelegate 注册 2. VC 使用 也可以查看 : https://www.cnblogs.com/Free-Thinker/p/7120211.html 阅读全文
posted @ 2019-01-15 14:46 懂事长qingzZ 阅读(829) 评论(0) 推荐(0) 编辑
window10安装黑苹果
摘要:一位大佬的分享笔记 启动盘https://github.com/Macrow/Hactonish clover的下载地址https://sourceforge.net/projects/cloverefiboot/files/latest/download Clover configurator配置 阅读全文
posted @ 2019-01-14 14:56 懂事长qingzZ 阅读(742) 评论(0) 推荐(0) 编辑
项目打包 TestFlight用法
摘要:TestFlight用法 包教包会(iOS APP官方测试工具) https://www.jianshu.com/p/4be185e4069c 阅读全文
posted @ 2019-01-09 16:23 懂事长qingzZ 阅读(557) 评论(0) 推荐(0) 编辑
IOS开发之无法选择模拟器显示NO Scheme
摘要:1. 不是 文件冲突的 看这个链接https://blog.csdn.net/sanpintian/article/details/7377365 2.文件冲突的 打开工程文件。 打开 直接 搜索 <<<< 或者 >>> 然后删除 阅读全文
posted @ 2019-01-07 16:04 懂事长qingzZ 阅读(239) 评论(0) 推荐(0) 编辑
iOS 组件化流程详解(git创建流程)
摘要:【链接】组件化流程详解(一)https://www.jianshu.com/p/2deca619ff7e 阅读全文
posted @ 2019-01-03 18:14 懂事长qingzZ 阅读(154) 评论(0) 推荐(0) 编辑
iOS 证书申请新步骤
摘要:2018iOS完整的证书申请和打包过程 - 简书https://www.jianshu.com/p/2b3c2693f4f2 阅读全文
posted @ 2019-01-03 14:46 懂事长qingzZ 阅读(144) 评论(0) 推荐(0) 编辑


< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示