Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个全局唯一的后退按钮,我该怎么做,所以在我的所有控制器中,默认的后退按钮将是我的自定义按钮?
我的自定义按钮是一个圆圈,里面有'<'。
您可以使用UIAppearance此功能,但仅限于 iOS 5 及更高版本:
UIAppearance
UIBarButtonItem.Appearance.SetBackButtonBackgroundImage(yourImage, UIControlState.Normal, UIBarMetrics.Default);
这不是我的想法(我面前没有 Mac),但代码应该非常接近。
请注意,这适用于整个应用程序中的每个后退按钮。