在iOS8中是否可以创建“右”/“继续”箭头按钮(而不是UINavigationItem
)。例如,在原生地图应用程序中,选定注释旁边的小灰色箭头。
我不想使用带有“>”的按钮或者,它看起来不同,似乎是错误的。
编辑:寻找类似
的内容UIButton.buttonWithType(.DetailDisclosure)
但.DetailDisclosure在iOS7中更改为(i)。
答案 0 :(得分:2)
MKAnnotationView
上的该按钮是rightCalloutAccessoryView
按钮设置为按钮类型UIButtonTypeDetailDisclosure
。
您应该能够将相同类型用于普通按钮...
UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];