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