Xcode 6,单视图控制器,swift
我正在制作一个像tic tac toe这样的游戏,我想知道如何设置一个弹出/警告说"等待玩家进行下一步行动"并且它下面有一个小旋转装载器,然后当玩家移动时,消息在等待的玩家消失,而另一个玩家等待消息弹出。感谢您关注并帮助。
答案 0 :(得分:1)
尝试使用MBProgressHUD。它是一个最适合您需求的开源库。
提供您想要的信息。这将在纺车下面。
let loadingNotification = MBProgressHUD.showHUDAddedTo(self.view, animated: true)
loadingNotification.mode = MBProgressHUDMode.Indeterminate
loadingNotification.labelText = "Waiting for player to make next move"
//and to dismiss it :
MBProgressHUD.hideAllHUDsForView(self.view, animated: true)
更新, 如何操作(桥接和全部):
步骤
MBProgressHUD.h and .m
拖放到您的项目中。bridging
说NO
(因为我们会手动执行此操作)。 Bridge.h
#import "MBProgressHUD.h"
,即Bridge.h build settings
并确保选中all
。swift compiler
。Objective-C Bridging Header
的值并将您的(Bridge.h
)文件名放在那里。现在在你的Swift文件中做东西:)