0

首先,我想从我 100% 的 iPhone 开发新手开始。我相信对于有经验的人来说,这是一个非常简单的问题。无论如何,我想做的是:

用户应该能够通过 SearchUI 从我的数据库中搜索对象。如果对象存在,则将其显示在将显示搜索对象的 tableView 中。我设法从数据库中获取对象,但没有将它们实例化到 tableview 中并显示它们。

老实说,我不知道我做错了什么。所有的帮助都将不胜感激,如果可能的话,还会进行一些解释。根据方法 - (void)objectLoader:(RKObjectLoader *)objectLoader didLoadObjects:(NSArray *)objects- 我尝试将对象移动到 tableView 中但没有任何成功。您可以在TableView 数据源方法FirstViewController.m的末尾找到该方法。pragma mark这是我的代码:

FirstViewController.h 类

#import <UIKit/UIKit.h>
#import <RestKit/RestKit.h>

@interface FirstViewController : UIViewController <UITableViewDataSource,           RKObjectLoaderDelegate>
{ 
UISearchDisplayController *searchDisplayController;
UISearchDisplayController *searchBar;
UITableView *table;
NSArray *allItems;
NSArray *searchResults;

}

@property (nonatomic, retain) IBOutlet UISearchDisplayController     *searchDisplayController;
@property (nonatomic, retain) IBOutlet UISearchDisplayController *searchBar;
@property (nonatomic, retain) IBOutlet UITableView *table;
@property (nonatomic, copy) NSArray *allItems;
@property (nonatomic, copy) NSArray *searchResults;
@end

FirstViewController.m 类

#import "FirstViewController.h"
#import "Task.h"

interface FirstViewController ()

end

implementation FirstViewController

@synthesize searchDisplayController;
@synthesize searchBar;
@synthesize allItems;
@synthesize searchResults;
@synthesize table;

#pragma mark - View lifecycle

- (void)viewDidLoad
{
//self.listContent = [[NSArray alloc] initWithObjects:@"John", @"Paul", nil];

//self.filteredListContent = [NSMutableArray arrayWithCapacity:10];

[super viewDidLoad];    // Do any additional setup after loading the view, typically  from a nib.
}

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
else
{
    return YES;
}
}


-(BOOL)searchDisplayController:(UISearchDisplayController *)controller   shouldReloadTableForSearchString:(NSString *)searchString
{
return NO;
}

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller  shouldReloadTableForSearchScope:(NSInteger)searchOption
{
return NO;
}


- (void)searchBarSearchButtonClicked:(UISearchBar *)pSearchBar
{
[[RKObjectManager sharedManager].mappingProvider setMapping:[Task getMapping]  forKeyPath:@"tasks"];

NSString *path = [NSString stringWithFormat:@"%@/%@/%@", @"/book/1/tasks/", pSearchBar.text, @".json"];
[[RKObjectManager sharedManager] loadObjectsAtResourcePath:path delegate:self];
NSLog(@"Search: %@", pSearchBar.text);  
}

#pragma mark - TableView Data Scource methods

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.searchResults count];
}

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell *cell = nil;

cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];

if(cell == nil)
{
    cell =  [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:@"MyCell"];
}

cell.textLabel.text = [self.searchResults objectAtIndex:indexPath.row];
return cell;
}

- (void) deselect { 
//[self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow]  animated:YES];
 }

// Respond to user selection tap by coloring the navigation bar
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath  *)newIndexPath
{

}


- (void)objectLoader:(RKObjectLoader *)objectLoader didLoadObjects:(NSArray *)objects
{
self.searchResults = objects;

[self.table reloadData];


for(Task *task in objects)
{
    if ([task isKindOfClass:[Task class]])
    {
        NSLog(@"Loaded Book ID: %@ ; Name: %@ ; Book: %@", task.id, task.name,  task.book.name);  
    }
}

}

- (void)objectLoader:(RKObjectLoader *)objectLoader didFailWithError:(NSError *)error
{
NSLog(@"Encountered an error: %@", error);  
}
@end
4

2 回答 2

0

第1步。由于您的 TableView 是一个 IBOutlet,因此请检查该视图控制器的 .xib 文件中的 tableView 数据源和委托映射。我的怀疑是挂钩不正确。

第2步。如果 .xib 文件中的连接是正确的,那么你应该这样做

- (void)objectLoader:(RKObjectLoader *)objectLoader didLoadObjects:(NSArray *)objects
{
   self.searchResults = objects;
   NSLog(@"%@", searchResults)
   [self.table reloadData];

....
}

并检查 NSLog 是否正在记录 searchResults 数组。如果由于某种原因为空,您的 numberOfRowsInSection 委托方法将返回 0,因此您的 tableView 将为空。

希望这可以帮助。

于 2012-08-17T05:35:12.780 回答
0

在第一行

@interface FirstViewController : UIViewController <UITableViewDataSource,           RKObjectLoaderDelegate>
 { 
UISearchDisplayController *searchDisplayController;
UISearchDisplayController *searchBar;
UITableView *table;
NSArray *allItems;
NSArray *searchResults;
}

用下面的代码替换这一行

@interface FirstViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, RKObjectLoaderDelegate>
 { 
UISearchDisplayController *searchDisplayController;
UISearchDisplayController *searchBar;
IBOutlet UITableView *table;
NSArray *allItems;
NSArray *searchResults;
}

并在界面生成器中连接 tableview 委托和 tableview 数据源。

希望能帮助到你。

于 2012-08-17T06:18:25.353 回答