2020-05-01から1ヶ月間の記事一覧

LAN内共有フォルダの接続先を検索、共有フォルダ名を取得

Carthageを導入 $ brew install carthage iOSでLAN内共有フォルダにアクセスする - Qiita SMBClient/Example/Example at master · filmicpro/SMBClient · GitHub

Carthageを導入

iOS初心者がCarthage導入する💪 - Qiita swift初心者:[carthage導入時のfailed with exit code 72: xcrun: error: unable to find utility "xcodebuild", not a developer tool or in PATH]の対処方法 - Qiita

web上の画像を表示

Swift初心者メモ web上の画像を表示したい - Qiita

GoogleDrive API

SwiftのGoogleDrive APIでディレクトリを作成する。 - プログラムを書こう!

UIImageViewの表示サイズを指定

//UIImageをivに変換 let iv:UIImageView = UIImageView(image:img) //サイズを変更 let rect:CGRect = CGRect(x:0, y:0, width:300, height:400) iv.frame = rect //変換したivをviewに追加 self.view.addSubview(iv) UIImageView 画像を拡大縮小させる