看起来systemItem属性在viewController.tabBarItem上不存在,有办法以编程方式将UIBarButtonSystemItem设置为UITabBarItem的图像吗?
谢谢
发布于 2017-10-02 23:04:35
不能将UIBarButtonSystemItem图标与UITabBarItem一起使用。相反,使用UITabBarSystemItem图标。
let barItem = UITabBarItem(tabBarSystemItem: .bookmarks, tag: 1) // or whatever item you wanthttps://stackoverflow.com/questions/46534722
复制相似问题