0
我想以編程方式在表視圖中執行滾動,選擇器視圖。在ios中執行tableview,uipiceker和uidatepicker視圖類中的滾動
程序應根據給定的起點和終點在視圖中滾動。這是如何實現的。此代碼用於測試ui應用程序。
感謝
我想以編程方式在表視圖中執行滾動,選擇器視圖。在ios中執行tableview,uipiceker和uidatepicker視圖類中的滾動
程序應根據給定的起點和終點在視圖中滾動。這是如何實現的。此代碼用於測試ui應用程序。
感謝
您可以通過使用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];
paul,我想以編程方式執行此處,我只發送座標到函數。我不想使用indexpath.Think的UI測試者誰想要執行一個滾動通過給協調員單獨他不知道ABT表信息/表內容等等。他應該只是在表視圖中執行滾動。將您的詳細信息發送到我的郵件ID。在那裏我可以展示我的完整開發代碼。 – user716543 2012-04-20 06:22:11