创建"继续" iOS8中的箭头按钮

时间:2014-12-11 15:50:22

标签: ios

在iOS8中是否可以创建“右”/“继续”箭头按钮(而不是UINavigationItem)。例如,在原生地图应用程序中,选定注释旁边的小灰色箭头。

iOS maps annotation button arrow

我不想使用带有“>”的按钮或者,它看起来不同,似乎是错误的。

编辑:寻找类似

的内容
UIButton.buttonWithType(.DetailDisclosure)

但.DetailDisclosure在iOS7中更改为(i)。

1 个答案:

答案 0 :(得分:2)

MKAnnotationView上的该按钮是rightCalloutAccessoryView按钮设置为按钮类型UIButtonTypeDetailDisclosure

您应该能够将相同类型用于普通按钮...

UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];