gpt4 book ai didi

iphone - 游戏中心 IBAction 成就

转载 作者:行者123 更新时间:2023-11-29 04:32:23 25 4
gpt4 key购买 nike

我最近一直在使用游戏中心(成就),我只知道如何做基于分数的成就。我怎样才能做这样的事情?

-(IBAction) {

//Unlock Achievement

}

除此之外,我了解有关游戏中心的所有其他内容。谢谢!

最佳答案

以下是从按钮创建 IBAction 的两种方法:

以编程方式:

UIButton *theButton = [[UIButton alloc] initWithFrame:CGRectMake(160, 240, 50, 20)];

[theButton addTarget:self action:@selector(unlockAch:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:theButton];

然后创建方法:

-(IBAction)unlockAch:(id)sender
{
//Unlock code
}

或者您可以使用界面生成器来完成。创建按钮并按住 Ctrl 键,单击按钮,然后拖动到 .h 文件中。您将看到一个弹出窗口,允许您创建一个操作并为其命名:

enter image description here

然后界面生成器会将其放入您的 .h 和 .m 文件中,它将连接并准备就绪!

enter image description here

关于iphone - 游戏中心 IBAction 成就,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11548794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com