
Xcode
Terry_886
这个作者很懒,什么都没留下…
展开
-
iOS新包的需要准备的东西
1、应用的启动图片2、应用logo图片(1024*1024)3、是否在已有的苹果账号上提交(版本为1.0.0)的ipa包,否则需要提供一个新苹果账号。4、App 预览和截屏(6.5寸和5.5寸)至少三张5、app 推广文本(推广文本可使您在无需提交更新请求的情况下让 App Store 访客了解当前的 App 功能。如果客户的设备运行 iOS 11 或更高版本以及 macOS 10.13 或更高版本,则客户将看到此文本显示在 App Sto..原创 2022-04-27 16:39:39 · 437 阅读 · 0 评论 -
Xcode
Xcode 历史版本 早期版本下载地址https://developer.apple.com/downloads/index.action需要先登录你的开发者账号 然后选择你想要下载的版本 在这里面就有苹果的所有官方开发工具和一些应用。以选择”Xcode3.0为例“,在Description标题下,点击”Xcode3.0“前面的加号 就出现了Xcode的镜像安装文件Xcode_3.0.dmg和原创 2016-10-10 15:01:33 · 859 阅读 · 0 评论 -
Verify the Developer App certificate for your account is trusted on your device
之前xcode 7.3.1的是都能用的证书到xcode 8.0上提示以下内容Verify the Developer App certificate for your account is trusted on your device. Open Settings on Bks_Test_iPhone SE and navigate to General -> Device Management,原创 2016-10-12 11:33:57 · 3127 阅读 · 0 评论 -
TouchID 指纹登录
#import "ViewController.h"#import <LocalAuthentication/LocalAuthentication.h>@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; if ([[self.n原创 2016-10-24 15:14:00 · 1291 阅读 · 0 评论 -
diff: /../Podfile.lock: No such file or directory
diff: /../Podfile.lock: No such file or directory diff: /Manifest.lock: No such file or directory error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods原创 2016-10-20 11:31:17 · 1410 阅读 · 0 评论 -
IOS蒲公英自动打包
IOS蒲公英自动打包每一位IOS 开发者都打过 *.ipa包,打完包之后还得发给相应的测试人员或者给领导等。 而且每次打包平均在4分钟左右,不要小看这4分钟,累计起来就不是怎么点儿啦。 从而我决定一个自动打包的方法,那就是蒲公英啦。好废话不多话啦,看实际的。安装蒲 Fastlane查看api文档官方安装指南注 ruby、rubygems、bundler 都要安装成功。 fastla原创 2017-07-27 09:48:12 · 1928 阅读 · 0 评论 -
AFNetworking 模块组成
AFNetworking由五个模块组成:分别由 - NSURLSession - Security - Reachability - Serialization - UIKit 五部分组成NSURLSession:网络通信模块(核心模块) 对应 AFNetworking中的 AFURLSessionManager和对HTTP协议进行特化处理的AFHTTPSession...原创 2019-06-27 09:24:44 · 383 阅读 · 0 评论