2

我的故事板看起来像这样:

在此处输入图像描述

如您所见,我在 MapView 下方有一个 TableView,然后当我单击搜索栏时会出现另一个 TableView。

我的代码:

。H

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>

@interface STLMMeetupLocation  : UIViewController <UITextFieldDelegate, UITableViewDataSource, UITableViewDataSource, MKMapViewDelegate, CLLocationManagerDelegate, UISearchBarDelegate, UISearchDisplayDelegate>
@property (weak, nonatomic) IBOutlet MKMapView *mapView;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (weak, nonatomic) IBOutlet UISearchBar *searchBar;
@end

.m

#pragma mark - Table View

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 2;
}

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   if (tableView == self.tableView)
{
    static NSString *cellIdentifier = @"firstTableViewCell";
    UITableViewCell *cell = [tableView
                             dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                      reuseIdentifier:cellIdentifier];
    }
    cell.textLabel.text = @"This is a First Table View cell";
    return cell;
}

else {
static NSString *cellIdentifier = @"searchBarCell";
UITableViewCell *cell = [tableView
                         dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                  reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = @"This is a Search Bar cell";
    return cell;
}

}

我的模拟器第一个屏幕:

在此处输入图像描述

我的模拟器第二个屏幕:

在此处输入图像描述

为什么我的模拟器第一个屏幕的 tableView 的 cell.textLabel.text 是空白的?它不应该有@“这是第一个表视图单元格”;我知道我在做一些愚蠢的事情!

4

3 回答 3

3

在您的情况下,唯一可能的原因是您没有正确连接数据源和委托。如果您已经连接,但仍然遇到问题,则只需断开所有连接并重新连接。这是一个示例图像....

https://www.dropbox.com/s/y51astwgjveeixm/Screen%20Shot%202013-04-11%20at%2010.41.02%20AM.png

而且,你已经使用了 UITableViewDataSource 两次.... :(

于 2013-04-11T05:15:26.877 回答
2

我拿了你的代码并试了一下。非常适合我。UISearchBar我认为您已经为和完美地编写和连接searchDisplayController。但是,您在实际的tableView.

我建议您快速浏览一下教程。我相信你会很快找到缺失的点。

一切顺利。

于 2013-04-11T05:49:40.280 回答
0
-(void)viewWillAppear:(BOOL)animated{

   [super viewWillAppear:animated];
   [self.tableView reloadData];

}
于 2013-04-11T08:43:17.483 回答