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.
点击标签时如何显示一些文本消息?我有一个标签(Address).Now,当我点击它时,我需要在一个小弹出窗口中显示相应的地址。
(Address).Now
我该怎么做?
我从您的评论中发现您实际上希望在点击事件时弹出一个窗口。
你需要做的就是
在 UILabel 上有一个按钮(您要在其上显示弹出窗口)。制作自定义类型的按钮(它会使按钮消失)。之后编写一个显示弹出窗口的方法,并将其连接到该自定义按钮。
要创建弹出窗口,您可以使用所需大小和位置的 UIView 并使其在自定义按钮点击事件(内部修饰)上出现/消失。
希望这可以帮助。