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.
使用 TWTweetComposeViewController(我知道,它已被弃用),如果由于某种原因无法发送推文,则会弹出一个标题为“无法发送推文”的警报视图和一条消息。有没有办法自定义警报视图显示的消息?
直截了当,公共 API - 没有你需要的东西。一点独创性,你就有了解决方案。警报视图显示在它们自己UIWindow的 s 中。每当显示警报视图时,UIWindow就会看到一个新对象。当窗口变得可见时,UIWindowDidBecomeVisibleNotification会触发通知。您可以注册此通知并更改警报视图的message. 您仍然需要决定当前警报视图是由您显示还是由 twitter API 或其他人显示。
UIWindow
UIWindowDidBecomeVisibleNotification
message