0
ラベルをユーザーのUUIDに変更するプログラムで作業しようとしていますが、何らかの理由で動作しないため、言語を学ぶ。以下は私の試みです。これはViewController.swiftファイルです。ラベルテキストをUUIDに置き換えられないアプリケーション
//
// ViewController.swift
// StudyPlus
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBOutlet weak var text: UILabel!
@IBAction func getuuid(sender: AnyObject) {
text.text = UIDevice.currentDevice().identifierForVendor!.UUIDString
}
}
getuuidを今までに電話しましたか? – Carter