[已解决]swift把NSDate时间变成时间戳
crifan 9年前 (2016-06-22) 1961浏览 0评论
//: Playground – noun: a place where people can play import UIKit extension NSDate { //convert time to Int64 t...
工作相关的技术文章
crifan 9年前 (2016-06-22) 1961浏览 0评论
//: Playground – noun: a place where people can play import UIKit extension NSDate { //convert time to Int64 t...
crifan 9年前 (2016-06-21) 2247浏览 0评论
之前是已经实现了: 给选中的cell添加背景色: [已解决]swift在初始化时设置表格单元选中后的颜色 但是,对于选中之前,按下去的那一刻,是没有背景色的: swift uitableviewcell before select add back...
crifan 9年前 (2016-06-21) 3000浏览 0评论
Xcode中,选择了,之前就正常使用的iOS模拟器中的iPhone 5,去调试app,结果启动就出错: The operation couldn’t be completed. (LaunchServicesError error 0.) Clea...
crifan 9年前 (2016-06-20) 3615浏览 0评论
代码: func showAlert(vc:UIViewController, title:String, message:String? = nil){ dispatchMain_async({ let alertContr...
crifan 9年前 (2016-06-20) 3608浏览 0评论
折腾: [记录]尝试用Team Admin的权限的Apple ID去打包企业版ipa文件 期间,遇到错误: Your account already has a valid iOS Distribution certificate 难道是: Mem...
crifan 9年前 (2016-06-20) 5300浏览 0评论
折腾: [记录]用企业账号打包企业版的iOS的app的ipa文件 期间,别人已经发送邀请了,邀请我到账号,apple id,为Team Admin 然后就是想办法去找到,如何同意别人的邀请。 去登录自己的Apple ID开发者账号: 但是进了自己的...
crifan 9年前 (2016-06-20) 3474浏览 0评论
已有企业账号相关的资料: AppID就叫LeadsApp xcode 企业证书 打包 iOS开发企业版ipa分发(In-House模式)记录 | 皮卡丘♪~(´ε` ) Xcode打包ipa的基本步骤 – 简书 苹果企业账号打包发布AP...
crifan 9年前 (2016-06-20) 3685浏览 0评论
Xcode调试,接上iPhone去安装并调试app,结果出错: Could not launch process launch failed: failed to get the task for process 233 [解决过程] 1.以为是X...
crifan 9年前 (2016-06-18) 1817浏览 0评论
用代码: <code> func updateCarModelAndColorList(curCarSerieId:Int) { gLog.verbose("curCarSerieId=\(curCarSe...
crifan 9年前 (2016-06-18) 3245浏览 0评论
背景 按照UI设计图的标注的尺寸,包括尺寸和大小,字体,图片 比如: 和,按照该尺寸,去,简单的除于2,而得到的iOS真实设备的尺寸 代码中去设置的尺寸 有差别 比如上述的字体,标注了18px 代码中去设置为 18/2=9 let Right...