2016-4~2017-4 小隨筆

字體 字號ios

中文字號VS英文字號(磅)VS像素值的對應關係:ruby

八號=5磅(5pt) ==(5/72)*96=6.67 =6px(像素)app

七號=5.5磅 ==(5.5/72)*96=7.3 =7px(像素)ide

小六=6.5磅 ==(6.5/72)*96=8.67 =8px(像素)svn

六號=7.5磅 ==(7.5/72)*96=10px(像素)字體

小五=9磅 ==(9/72)*96=12px(像素)ui

五號=10.5磅 ==(10.5/72)*96=14px(像素)spa

小四=12磅 ==(12/72)*96=16px(像素).net

四號=14磅 ==(14/72)*96=18.67 =18px(像素)blog

小三=15磅 ==(15/72)*96=20px(像素)

三號=16磅 ==(16/72)*96=21.3 =21px(像素)

小二=18磅 ==(18/72)*96=24px(像素)

二號=22磅 ==(22/72)*96=29.3 =29px(像素)

小一=24磅 ==(24/72)*96=32px(像素)

一號=26磅 ==(26/72)*96=34.67 =34px(像素)

 

 

  pods操做文件

 

進入項目文件  直接按着文檔走

 

rm -rf Pods/

rm -rf PlusHealthDoctor.xcworkspace/

rm Podfile.lock

pod install --verbose --no-repo-update

 

Pasted Graphic 2.tiff

1.移除現有Ruby默認源

$gem sources --remove https://rubygems.org/

2.使用新的源

$gem sources -a https://ruby.taobao.org/

3.驗證新源是否替換成功

$gem sources -l  

只能有一個!!!!!!!

 

 

ARC 項目添加MRC標記(-fno-objc-arc),也能夠給MRC項目添加ARC標記(-fobjc-arc)。

https://developer.apple.com/account/ios/profile/production   發佈

 

 

銀聯 與 Apple Pay 大體流程 :https://developer.apple.com/library/ios/ApplePay_Guide/

 

推送消息能夠帶自定義字段

如message:"/product/detail" ,程序在收到推送消息時,讀取消息該字段,就能夠直接跳轉了!

 

 

若是接收的推送消息 裏沒有"content-available" = 1;  存不了:    http://blog.csdn.net/sharecourage/article/details/46915643

 

代碼實現得到應用的Verison號:

[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]

[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];

得到build號:

[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]

 

 

刪掉is missing from working copy警告⚠️

1.打開終端

2.cd 到當前目錄

3.輸入 find . -type d -name .svn | xargs rm -rf 回車便可

可是這樣刪了全部關於SVN的文件

相關文章
相關標籤/搜索