gpt4 book ai didi

ios - 我如何通过快速编程测试是否只有一种方法在 xcode 中有效?

转载 作者:行者123 更新时间:2023-11-29 00:53:28 25 4
gpt4 key购买 nike

我不想运行整个项目,因为我有其他类以及我不想运行的主 Storyboard,我只想运行下面的代码,这可能吗?

import Foundation


var eventCapacity : Int?;
var eventAttendees : String?;

var attendees = 0;


func addAttendee (user_id:User){

if eventCapacity < attendees {
attendees++;
print("Going to event")
}
}


func removeAttendee(user_id:User){

attendees--;
print("Not going")
}


func getAttendees(){

print(attendees)
}

最佳答案

您可以使用Playground来实现这一点。打开 Xcode,然后转到 File -> New -> Playground 并按照步骤操作。将您的代码与 User 类的实现一起复制到那里。您应该能够调用您的函数并测试它们。

关于ios - 我如何通过快速编程测试是否只有一种方法在 xcode 中有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37863957/

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