PGメモ

非エンジニアの記録

2016-01-01から1年間の記事一覧

How to convert plist to CSV

I took so much time to solve this problem, that's why I note here.At first, I tried to find solution using Xcode or some command, however I couldn't. So, I changed to take another way; using web service.1. Convert plist to JSON http://json…

UIWebViewで要素の上に灰色(黒)の謎領域が出る

こういうのです解決法はインスペクタ「Adjust Scroll View Insets」のチェックを外す。でした

swiftでのコードのみで画面遷移

navigation controller使わずに遷移 let nextView = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("Detail") as UIViewController self.presentViewController(nextView, animated: false, completion: nil) navigatio…

UIImageViewにAspect Fillで画像を表示する際にはみ出ないようにする対応

storyboaed上image viewを選択し、DrawingのClip Subviewsにチェックを入れる。