如何滚动到标题等于某个UIActionSheet
值的NSString
单元格?
(我确信桌面视图会更好......等等,但这就是我目前的情况,需要解决当前的困境)。
当动作表进入视图时,是否可以使用类似以下内容向下滚动到基于某个NSString
值的行?如果是这样,我如何编码NSIndexPath indexPathForRow:row
?我现在得到未声明的标识符行。
[actionSheet scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
我可以通过以下方式获取操作表行的标题文本:
actionSheetSelectedCity = [NSString stringWithFormat:@"%@",[actionSheet buttonTitleAtIndex: buttonIndex]];