如何在点击时隐藏 uitoolbar
我有一个带有按钮的 uitoolbar,单击该按钮会将 uiwebview 的图像捕获到照片存储中。 是否可以让按钮在单击时隐藏,然后在捕获代码完成后重新出现。我使用界面生成器创建了按钮。不希望工具栏显示在捕获的图像中。提前感谢您提供的任何帮助。
I have a uitoolbar with a button that when clicked captures a image of a uiwebview to the photos storage.
Is it possible to have the button hide onclick and then reappear after the capture code has finished.I created the button with interface builder.Don't want the toolbar showing in the captured image.Thanks in advance for any help offered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否完全理解你的问题,但你可以很容易地隐藏和显示
UIButton
。UIButton
是UIView
的子类,它具有hidden
属性。所以它可能就像设置一样简单:myButton.hidden = YES;
来自 Apple 的文档:
I'm not sure if I exactly understand your question, but you can hide and display a
UIButton
pretty easily.UIButton
is a sub-sub-class ofUIView
, which has ahidden
property. So it might be as simple as setting:myButton.hidden = YES;
From Apple's docs: