摘要:PyCoreImage 安装 首先,需要下载安装包,下载地址: https://developer.apple.com/documentation/coreimage/prototyping_your_app_s_core_image_pipeline_with_python https://doc
阅读全文
摘要:http://mp.weixin.qq.com/s?__biz=MzI1MTA1MzM2Nw==&mid=2649796799&idx=1&sn=42061b7d021b8d8fba00202286cd9372&scene=0#wechat_redirect 果然是厉害。 思路和采取的措施都不错!
阅读全文
摘要:Introduction to Notificationshttps://developer.apple.com/wwdc2016/707 通知这哥们说话有点不清晰啊。 远程通知本地通知 可以被操作的通知Dismiss Notifications 左滑消除UNNotification 响应式的通知 只有一个方法UNUserNotificationCenterDelegate Server->A...
阅读全文
摘要:session204 imessageApp sticker partI 工程文件:https://developer.apple.com/library/prerelease/content/samplecode/IceCreamBuilder 工程文件:https://github.com/urmyfaith/wwdc2016_session204_iMessageDemo 这位老兄说话有...
阅读全文
摘要:自动签名机制和手动签名都明显看起来很好用。 自动签名有log 手动签名有具体的错误提示信息。 session401 Xcode Signing. 亲,你的眼睛好大 相声演员吗? Yeah,You are. codesign 代码签名 三件事: 证书,prov,entitlements 证书(开发证书和分发证书)privateKey Apple have no copy prov file 允许...
阅读全文
摘要:Dock 应用的介绍:1.设计到的东西多2.使用 swift 设计3.Dock 的代码量: 200,000行4.更少的重写相同功能的代码 swift.org 官网介绍 Swift Open Source 三个分类: 语言方面,包管理,核心库 Package Manager frictionless核心库,在 iOS,macOS等平台共用的代码 Foundation on Linux swift-...
阅读全文
摘要:iOS 10.0SiriKitProactive SuggestionsIntegrating with the Messages App 与系统短信 app交互User Notifications 用户通知Speech Recognition 语音识别Wide Color 色彩空间的支持Adapting to the True Tone Display 真彩色显示App Search E...
阅读全文
摘要:http://www.jianshu.com/p/fd5d193f3d36 问 http://www.jianshu.com/p/c687110e552c 答 4道过滤菜鸟的iOS面试题 1.struct和class的区别 2.介绍一下观察者模式 3.在一个https连接的网站里,输入账号密码点击登
阅读全文
摘要:参考资料: https://developer.apple.com/library/mac/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Tra
阅读全文
摘要:原文链接: http://mp.weixin.qq.com/s?__biz=MzA5MjYyNzY1OQ==&mid=2650901947&idx=1&sn=89af64d3b0dec01587f14aab15e62b9a#rd 40 分,60 分,90 分 原创 2016-05-27 汪海 汪海的实验室 背景 最近在微博上看到有人说,找工作太难了,面试官要求还高,才大三就...
阅读全文
摘要:[转载]http://blog.csdn.net/duanyipeng/article/details/8007684编译错误“The run destination My Mac 64-bit is not valid for Running the scheme '***',解决办法标签:schemexcodeiosbuildos2012-09-22 16:338214人阅读评论(...
阅读全文
摘要:// see athttp://swifter.tips/enum-enumerate/// 貌似有些空格在粘贴的时候没有了... = =!import Foundationenum Suit: String { case Spades = "黑桃" case Hearts = "红桃" case Clubs = "草花" case Diamonds = "方片...
阅读全文
摘要:Technical Q&A QA1914Viewing the interface of your Swift codeQ: How do I view the interface of my Swift code in Xcode?问: 怎么在Xcode中查看swift文件的头文件?A:Xcode generates an interface file that includes all ...
阅读全文
摘要:Technical Q&A QA1919Incoming requests for /.well-known/apple-app-site-association fileQ: Why is my web server receiving requests forhttps://example.com/.well-known/apple-app-site-association?A:The ...
阅读全文
摘要:swift-Xcode7.xswift-Xcode7.x(7.1,7.2,7.3)新建playground运行不能运行Unable to find execution service for selected run destinatio解决方法1.关闭Xcode2.在终端执行两行代码 rm -rf ~/Library/Developer/CoreSimulator/Deviceskillall...
阅读全文
摘要:NSUserDefaults第一部分:Swifty APIs: NSUserDefaults01传统弊端(方法太长)Verbosity02使用下边改进: The subscript03类型的问题Types04可能为空Optionals05Existence: key是否存在?06Optional assignment可选赋值07算法方面Arithmetic08简单的封装Wrapping upRes...
阅读全文
摘要:ViewController之间的转场和数据传递 可以正向传递值, 反向传递值. 注意反向传值的时候,方法的位置: https://github.com/urmyfaith/GRDBUsage/blob/master/GRDBUsage/ViewControllers/MainTableViewCo
阅读全文
摘要:ReadMeQ1: typedef NS_ENUMQ2: 复杂的宏改何去何从?A1: 使用函数替换宏A2: 稍微多几个参数的宏定义Q3: 结构体转换Tip:从OC头文件显示转换成Swift接口文件参考资料:Q1: typedef NS_ENUMOC中的枚举被转换成了swif中的枚举: typedef NS_ENUM(NSInteger, PersonSexType) { PersonSex...
阅读全文
摘要:克隆部分文件克隆部分文件总结一下一个完整的例子:克隆部分文件http://blog.csdn.net/linlzk/article/details/49019787在进行项目开发的时候,有时候会有这样的需求那就是:我们只希望从Git仓库里取指定的文件或者文件夹出来。在SVN里面,这非常容易实现,因为SVN基于文件方式存储,而Git却是基于元数据方式分布式存储文件信息的,它会在每一次Clone的时候...
阅读全文
摘要:swift @AUTOCLOSURE 和 ?? || @AUTOCLOSURE 和 ??由 王巍 (@ONEVCAT) 发布于 2014-08-20Apple 为了推广和介绍 Swift,破天荒地为这门语言开设了一个博客(当然我觉着是因为 Swift 坑太多需要一个地方来集中解释)。其中有一篇提到了一个叫做 @autoclosur...
阅读全文