tableView:numberOfRowsInSection:]:发送到实例的无法识别的选择器

我有一个奇怪的问题。 我收到此错误:

-[FourSquareCheckInViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x7aecc0 2012-09-14 19:18:39.039 [5869:707] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[FourSquareCheckInViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x7aecc0' *** First throw call stack: (0x3545e88f 0x37805259 0x35461a9b 0x35460a83 0x353bb650 0x32ee3693 0x32ee49ed 0x32ee493f 0x32ee451b 0x32ef17df 0x32ef16af 0x32e95f37 0x353bd1fb 0x3228daa5 0x3228d6bd 0x32291843 0x3229157f 0x322894b9 0x35432b1b 0x35430d57 0x354310b1 0x353b44a5 0x353b436d 0x37050439 0x32ec0cd5 0xb7ebb 0xb7e60) terminate called throwing an exception(lldb) 

好的,我确保将ViewController设置为dataSource和Delegate。 我已将UITableViewDelegate和UITableViewDataSource添加到 thingies中。

我在viewDidLoad方法中设置了tableView.delegate = self和tableView.dataSource = self。

这是我对viewDidLoad和viewDidAppear方法的实现:

 - (void)viewWillAppear:(BOOL)animated{ locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move locationManager.desiredAccuracy = kCLLocationAccuracyKilometer; // 1km [locationManager startUpdatingLocation]; locationLat = [locationManager location].coordinate.latitude; locationLng = [locationManager location].coordinate.longitude; [locationManager stopUpdatingLocation]; // 1 CLLocationCoordinate2D zoomLocation; zoomLocation.latitude = locationLat; zoomLocation.longitude= locationLng; // 2 MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 0.5*METERS_PER_MILE, 0.5*METERS_PER_MILE); // 3 MKCoordinateRegion adjustedRegion = [_mapView regionThatFits:viewRegion]; // 4 [_mapView setRegion:adjustedRegion animated:YES]; } - (void)viewDidLoad { [super viewDidLoad]; _tableView.delegate = self; _tableView.dataSource = self; // Do any additional setup after loading the view. // 1 MKCoordinateRegion mapRegion = [_mapView region]; CLLocationCoordinate2D centerLocation = mapRegion.center; locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move locationManager.desiredAccuracy = kCLLocationAccuracyKilometer; // 1km [locationManager startUpdatingLocation]; locationLat = [locationManager location].coordinate.latitude; locationLng = [locationManager location].coordinate.longitude; [locationManager stopUpdatingLocation]; } 

这是我的numberOfRowsInSection方法体:

 - (NSInteger)numberOfRowsInSection:(NSInteger)section{ return 5; } 

这是我的视图控制器的头文件:

 #import  #import  #define METERS_PER_MILE 1609.344 @interface FourSquareCheckInViewController : UIViewController { } @property (weak, nonatomic) IBOutlet MKMapView *_mapView; - (NSInteger)numberOfRowsInSection:(NSInteger)section; @property (weak, nonatomic) IBOutlet UITableView *_tableView; @end 

这是一个屏幕截图,显示我的tableView如何连接:

在此处输入图像描述

阅读错误消息告诉您的内容!

你已经实现了numberOfRowsInSection: . 所以呢? 那是错误的方法。 这是无关紧要的。 永远不会被召唤。

您需要实现的方法称为tableView:numberOfRowsInSection: . 那是完全不同的。

我有委托和数据源连接到TableView

如果单击视图,它应在INSPECTOR中显示上述连接。 如果您还没有连接ViewController,您将收到错误:

‘NSInvalidArgumentException’,原因:’ – [UIView tableView:numberOfRowsInSection:]:无法识别的选择器发送到实例

我是如何阻止错误的

  1. 按下ViewController以选择它
  2. 在右侧的“ 连接”检查器中查找“ 引用sockets
  3. New Referencing Outlet的圆圈拖动到视图
  4. 释放鼠标时,会显示一个小弹出窗口 – 选择数据源
  5. 重复步骤3,这次选择委托

完成后,它应该如下图所示!

引用插座数据源和委托连接到视图

这为我停止了上述错误。 我希望这可以帮助别人。

如果您已经在视图控制器中正确地连接了所有内容,那么您也会看到此错误,您忘记在故事板中分配自定义视图控制器类:

在身份检查器中输入自定义视图控制器

这很简单,我遇到了类似的问题。 我在我的ViewController中实现了没有Storyboard的TableView,它将UIViewController子类UIViewController两个协议:

但是如果你看一下UITableViewDataSource ,有两种方法是@required ,你需要在你的代码中实现这些方法:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

UITableViewDelegate中的所有其他方法都是@optional因此您不需要实现它们。

 - (NSInteger)numberOfRowsInSection:(NSInteger)section; 

您没有实现UITableViewDataSource方法。 删除声明,它不会再崩溃。 或者为其提供方法体。

如果您已正确设置所有内容,但仍会出现此错误。 您需要将控制器分配给自定义类 在此处输入图像描述

如果你已经在视图控制器中正确地连接了所有内容,那么你也会看到这个错误,你忘了扩展UITableViewDelegate,UITableViewDataSource。