The Pragmatic Ball boy

iOSを中心にやってる万年球拾いの老害エンジニアメモ

2015-07-01から1ヶ月間の記事一覧

iOS9 ATSの設定方法

β4現在 Xcode7でビルドするとiOS9以降でApp Transport Security (ATS) が利用可能となります App Transport Security Technote: App Transport Security Technote デフォルトでhttps通信が必須となるので、この挙動を変更するには上の仕様に書いてあるように…

Xcode7 betaでiOS8.4端末にインストールできない場合

Xcode7 beta3で、iOS8.4の端末をつなげても"ineligible devices"となり、端末が選択できず実機にインストールできない。。 (追記:beta4ではiOS8.4に対応してます) 調べてみると8.4が入ってないです $ ls /Applications/Xcode-beta.app/Contents/Developer…

XcodeのSwiftのFile Templateを変更する

Xcodeでデフォルトで生成される以下のようなtemplateを変更したい場合は // // File.swift // Project_name // // Created by xxxxxxxxxxx on xxxx/xx/xx. // Copyright © 2015年 xxxxxxxxx xxxxxxx. All rights reserved. // import Foundation このように…

Swift2でのbitmask

Swift2からRawOptionSetTypeがOptionSetType (OptionSetType Protocol Reference) に変わったため、 例えばUIViewAutoresizingの場合、 これまでは view?.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight だっ…