这是我的代码:
class AppUtils: NSObject {
static func showLoadingview (viewcontroller : UIViewController) {
dispatch_async(dispatch_get_main_queue(), {
}
}
用法:
class TableViewController: UITableViewController {
func getGroupAPI()
{
AppUtils.showLoadingview()
}
}
请帮帮我谢谢
答案 0 :(得分:0)
您需要将参数传递给函数,可能是:
AppUtils.showLoadingview(viewcontroller: self)