I have created a slide out menu using Swift. I have done this many times before, but when I created it today, I get this error (see screenshot). It could just be a simple mi
Make sure that your class implements UITableViewDelegate and UITableViewDataSource.
UITableViewDelegate
UITableViewDataSource
class MyController: UIViewController, UITableViewDelegate, UITableViewDataSource { // All your methods here }
You won't need override keyword unless any other superclass already implements those methods.
override