2012-04-19 58 views

回答

1

您可以通過使用scrollToRowAtIndexPath:atScrollPosition:animated:一個UITableView編程滾動,如:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:1]; 
[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; 

在您使用selectRow:inComponent:animated:一個UIPickerView,如:

[pickerView selectRow:2 inComponent:0 animated:YES]; 

UIDatePicker你會使用setDate:animated:,例如:

[datePicker setDate:[NSDate date] animated:YES]; 
+0

paul,我想以編程方式執行此處,我只發送座標到函數。我不想使用indexpath.Think的UI測試者誰想要執行一個滾動通過給協調員單獨他不知道ABT表信息/表內容等等。他應該只是在表視圖中執行滾動。將您的詳細信息發送到我的郵件ID。在那裏我可以展示我的完整開發代碼。 – user716543 2012-04-20 06:22:11