1
swift3の新機能です。今、私はこのような他のswift.fileswift3コールアラート機能他swift.file
からのアラート機能を呼び出すために方法を見つけるしています:
//MainView.swift
//Call function
AlertFun.ShowAlert(title: "Title", message: "message...")
//Another page for storing functions
//Function.swift
public class AlertFun {
class func ShowAlert(title: String, message: String) {
let alert = UIAlertController(title: tile, message: message, preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)
}
}
ここでの問題... ...このような方法でこれを行うことはできません
self.present(alert, animated: true, completion: nil)
どうすれば実装できますか?ありがとう。
。ありがとう –