我可以在视图中而不是导航栏中的某个位置使用 UIBarButtonSystemItemCamera 吗?
因此,我可以使用 UIBarButtonSystemItemCamera
在我的 UINavigationBar
上添加一个相机按钮。
我想将相同的按钮添加到视图中心的某个位置(120、160、10、10)。
我可以像 UIButton 一样使用它并使用该相机按钮,还是应该创建自定义按钮(看起来像 UIBarButtonSystemItemCamera)并使用相同的方法?
So I can add a Camera button on my UINavigationBar
with UIBarButtonSystemItemCamera
.
I want to add the same button to somewhere in the center of my view (120, 160, 10, 10).
Can I use it like a UIButton and use that camera button or should I just create my custom button (which looks like the UIBarButtonSystemItemCamera
) and use the same methods for it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的建议是使用该相机图像(位于谷歌图像中)创建 UIButton 然后根据需要设置大小,然后将其添加到您的视图中,
因为 UIBarButtonItem 不是从 UIView 继承的。它是从 NSObject 继承的。
所以你不能将它们添加到你的视图中。
my suggestion is create UIButton with that camera image(which is in google image) then set the size as u needed then add it to ur view
because the UIBarButtonItem is Not inherited from UIView .it is from NSObject.
so u can't add them to ur View.