Created
July 9, 2015 11:48
-
-
Save matsuyoro/f8cced238dee521f747c to your computer and use it in GitHub Desktop.
swift NSURLをstringで手軽に作る ref: http://qiita.com/matsuyoro/items/991d06d407fffa70bd4d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// アプリバージョンをStringで | |
let version: String! = NSBundle.mainBundle().objectForInfoDictionaryKey("CFBundleShortVersionString") as? String | |
// 指定URLと文字連結 | |
var myUrlStr:String = "http://hooogeee.com?v=" + version | |
// NSURL型に変換するなら | |
var myUrl:NSURL = NSURL(string:myUrlStr)! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment