iOS开发
文章平均质量分 92
净化coding
海阔凭鱼跃,天高任鸟飞
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Fastlane iOS打包
#!/bin/bash # 不需要git验证 git config --global http.sslVerify false # 编码处理 export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8 # 安装fastlane # https://docs.fastlane.tools/get...原创 2019-12-12 09:21:02 · 301 阅读 · 0 评论 -
Git ignore忽略文件
# Xcode # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore ## Build generated build/ DerivedData/ ## Various settings *.pbxuser !de...原创 2019-12-12 09:04:24 · 268 阅读 · 0 评论 -
APNS推送证书pem制作
推送证书pem制作 p12转 pem(公钥生成) openssl pkcs12 -clcerts -nokeys -out apns_toc_cert.pem -in toc_aps.p12 p12转 pem(私钥生成) openssl pkcs12 -in toc_aps.p12 -out apns_toc_key.pem -nodes 合并(看服务器需求) cat apns_toc_ce...原创 2019-12-12 09:02:49 · 301 阅读 · 0 评论 -
iOS SDK制作脚本(a或framework)
a 文件打包脚本 # Type a script or drag a script file from your workspace to insert its path. #! /bin/bash if [ "${ACTION}" = "build" ] then INSTALL_Path=${SRCROOT}/Products INSTALL_DIR=${INSTALL_Path}/lib...原创 2019-12-12 09:00:34 · 562 阅读 · 0 评论 -
cocoapods指令集合
查看当前ruby版本 ruby -v 安装rvm,升级ruby curl -L get.rvm.io | bash -s stable source ~/.bashrc source ~/.bash_profile 查看ruby最新版本信息 rvm list known 更换ruby源 sudo gem update --system gem sources --remove https://r...原创 2019-12-12 08:56:19 · 200 阅读 · 0 评论
分享