This is not exactly what you want, but this the first thing I thought of. First, instantiate a button of type UIButtonTypeDetailDisclosure:
UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
Next, rotate the button 90 degrees:
CGAffineTransform rotationTransform = CGAffineTransformIdentity;
rotationTransform = CGAffineTransformRotate(rotationTransform, DegreesToRadians(90));
button.transform = rotationTransform;
Finally, use the button as the accessoryView:
cell.accessoryView = button;
Hope that helps.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…