问题是UItableVIEw有一些单元格,它们的“附件类型”设置为UItableVIEwCellAccessoryDetaildisclosurebutton.发生这种情况:
开始,一切看起来应该是:
>用户点击UISearchbar.
> UISearchdisplayController在主表的顶部创建黑色叠加层,并使主表的索引(as,sectionIndexTitlesFortableVIEw)消失.
>假设用户此时隐藏键盘(按下标准键盘上的iPad“隐藏键盘”按钮)
>由于用户还没有在UISearchbar中输入任何内容,我们仍然可以看到主表,尽管在UISearchdisplayController添加的黑色叠加层之下.
>键盘的隐藏暴露了更多的主表,导致主表加载更多的单元格.
>现在这里的问题是:由于这些单元格在主表的索引被隐藏时加载,所以显示的按钮显示得太过分(至少与其他单元格相比).
>此外,当用户现在取消搜索时,可能不会重新加载这些单元,导致公开按钮被显示在索引下面(现在再次可见).
我正在努力解决这个问题;我可以想到的唯一选择是找到对应于公开按钮的UIVIEw,并手动移动它,但是这似乎是非常可笑的,如果只是因为甚至找到UIVIEw requires a nasty hack.关于如何以更好的方式解决这个问题的任何建议非常感谢!
最小的可运行示例
以下是一个最小的例子.只需启动一个新的XCode项目,仅启用ARC,iPad,并将AppDelegate的内容替换为以下内容.请注意,为了最小化的示例,我强制主表在searchdisplayController中重新加载单元:willShowSearchResultstableVIEw,否则主表将缓存其单元格,并且问题不会显示(在我的实际应用程序中,主表正在重新加载其单元格对于其他原因,我不完全确定为什么 – 但是当然,主表可以随时重新加载单元格.)
要查看问题发生,请运行代码,在搜索框中输入内容(您将看到“搜索结果0 .. 5”),然后取消搜索.主表的公开按钮现在显示在索引下方而不是旁边.
下面只是代码:
@interface AppDelegate ()@property (nonatomic,strong) UItableVIEwController* maintableController;@property (nonatomic,strong) UISearchdisplayController* searchdisplay;@end@implementation AppDelegate- (BOol)application:(UIApplication *)application dIDFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // OverrIDe point for customization after application launch. UItableVIEwController* tableVIEwController = [[UItableVIEwController alloc] initWithStyle:UItableVIEwStylePlain]; UItableVIEw* tableVIEw = [tableVIEwController tableVIEw]; [tableVIEw registerClass:[UItableVIEwCell class] forCellReuseIDentifIEr:@"Cell"]; [tableVIEw setDataSource:self]; [self setMaintableController:tableVIEwController]; UISearchbar* searchbar = [[UISearchbar alloc] initWithFrame:CGRectMake(0,44)]; // WIDth set automatically [tableVIEw settableheaderVIEw:searchbar]; UISearchdisplayController* searchdisplay = [[UISearchdisplayController alloc] initWithSearchbar:searchbar contentsController:tableVIEwController]; [searchdisplay setSearchResultsDataSource:self]; [searchdisplay setDelegate:self]; [self setSearchdisplay:searchdisplay]; [[self window] setRootVIEwController:tableVIEwController]; self.window.backgroundcolor = [UIcolor whitecolor]; [self.window makeKeyAndVisible]; return YES;}#pragma mark table vIEw data source- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *)tableVIEw { if (tableVIEw != [[self searchdisplay] searchResultstableVIEw]) { return 26; } else { return 1; }}- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw numberOfRowsInSection:(NSInteger)section { if (tableVIEw != [[self searchdisplay] searchResultstableVIEw]) { return 10; } else { return 5; }}- (voID)searchdisplayController:(UISearchdisplayController *)controller willShowSearchResultstableVIEw:(UItableVIEw *)tableVIEw { // The problem arises only if the main table vIEw needs to reload its data // In this minimal example,we force this to happen [[[self maintableController] tableVIEw] reloadData]; [tableVIEw registerClass:[UItableVIEwCell class] forCellReuseIDentifIEr:@"SearchCell"];}- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath { if (tableVIEw != [[self searchdisplay] searchResultstableVIEw]) { UItableVIEwCell* cell = [tableVIEw dequeueReusableCellWithIDentifIEr:@"Cell" forIndexPath:indexPath]; [[cell textLabel] setText:[Nsstring stringWithFormat:@"%c%d",'A' + [indexPath section],[indexPath row]]]; [cell setAccessoryType:UItableVIEwCellAccessoryDetaildisclosurebutton]; return cell; } else { UItableVIEwCell* cell = [tableVIEw dequeueReusableCellWithIDentifIEr:@"SearchCell" forIndexPath:indexPath]; [[cell textLabel] setText:[Nsstring stringWithFormat:@"Search result %d",[indexPath row]]]; [cell setAccessoryType:UItableVIEwCellAccessoryDetaildisclosurebutton]; return cell; }}- (NSArray *)sectionIndexTitlesFortableVIEw:(UItableVIEw *)tableVIEw { if (tableVIEw != [[self searchdisplay] searchResultstableVIEw]) { return [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",nil]; } else { return nil; }}解决方法 如果您想要模仿苹果自己的应用程序在这些情况下似乎表现的方式,那么正确的 *** 作过程将是开始搜索时所有向右移动的详细信息按钮的原因,然后再次重新移动一次搜索完成.
我在你的例子中已经实现了这一点,通过在主表中查看两个UISearchdisplayDelegate方法,我添加到你的代码中调用reloadData:
- (voID)searchdisplayControllerWillBeginSearch:(UISearchdisplayController *)controller{ [[[self maintableController] tableVIEw] reloadData];}- (voID)searchdisplayControllerWillEndSearch:(UISearchdisplayController *)controller{ [[[self maintableController] tableVIEw] reloadData];}
这将强制您的详细披露视图重新定位,以考虑表视图索引的可见性,保持所有披露指标的位置彼此一致,无论是否在搜索模式.
更新
我在其他UISearchdisplayDelegate方法中重新加载表视图,包括:
- (voID)searchdisplayController:(UISearchdisplayController *)controller dIDLoadSearchResultstableVIEw:(UItableVIEw *)tableVIEw- (voID)searchdisplayController:(UISearchdisplayController *)controller willUnloadSearchResultstableVIEw:(UItableVIEw *)tableVIEw
但是这些产生了一个相当刺耳的效果,其中详细的公开按钮的位置突然跳出来,所以我建议如前所述的willBeginSearch和willEndSearch方法.
总结以上是内存溢出为你收集整理的在搜索过程中,ios – UITableViewCell的详细信息按钮按钮太远全部内容,希望文章能够帮你解决在搜索过程中,ios – UITableViewCell的详细信息按钮按钮太远所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)