我正在尝试使用以下代码在静态 UITableView 中将详细信息披露指示器旋转 90 度,但它不起作用。
NSIndexPath* cellIndext = [NSIndexPath indexPathForRow:1 inSection:0];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:cellIndext];
cell.accessoryView.transform = CGAffineTransformMakeRotation(90.0*M_PI/180.0);
也试过:
cell.accessoryView.transform = CGAffineTransformRotate(cell.accessoryView.transform, 90*M_PI/180);
仍然没有工作,任何帮助表示赞赏。
请注意:我不是在谈论详细信息披露按钮,而是在谈论详细信息披露指标。另外,我想避免使用自定义图像,只想使用内置图像。