我試圖聲明一個函數來在我的應用程序中顯示警報。爲了避免重複工作,我試圖爲我的所有應用程序使用相同的功能。我試圖通過創建一個具有函數showNotification的類來實現這一點。但是當我創建該類的對象並調用方法時,沒有任何反應。我怎樣才能做到這一點?在所有視圖控制器中創建警報功能 - swift
class SharedPropertiesAndMetods : UIViewController {
func showNotification(title: String, message: String)
{
let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "تائید", style: .default, handler: nil)
alertController.addAction(defaultAction)
present(alertController, animated: true, completion: nil)
}
}
添加此方法的UIViewController – Anuraj
@HosAp的延伸有4個答案。他們都沒有幫助嗎? –
@GaneshKumar是的,作爲擴展添加是一個好主意 –