Cannot select Custom Class for Table View Controller (UITableViewController)同樣的問題,但我不明白
有人問正是我要問的答案,但我不明白的文件,我要補充的「@interface YOURCLASSNAME:的UITableViewController」到使客戶類爲uitableview控制器?
任何幫助表示讚賞。
Cannot select Custom Class for Table View Controller (UITableViewController)同樣的問題,但我不明白
有人問正是我要問的答案,但我不明白的文件,我要補充的「@interface YOURCLASSNAME:的UITableViewController」到使客戶類爲uitableview控制器?
任何幫助表示讚賞。
請確保你理解了提問者的問題,以確認您所面臨的同樣的問題。
,他遇到的問題是:
MainViewController.h
文件被聲明爲@interface MainViewController : UIViewController
UITableViewController
,而MainViewController的類型爲UIViewController
。改變這一行:
@interface MainViewController : UIViewController
成這樣:
@interface MainViewController : UITableViewController
謝謝你的回覆 – user6702783
這個答案是對的Objective-C,不是斯威夫特。你的自定義類是什麼樣的?你是否繼承了UITableViewController? – vacawama
我的自定義類是一個UIViewController類。 – user6702783