我一直在构建一个 iOS 应用程序,我的一个 ViewController 已经变得充满了如下功能:
CGPoint randomPoint()
{
//Code goes here
}
我现在想将它们移到 A 类(或协议,我不确定什么对我有用),将其导入 VC 并像以前一样调用:
p=randomPoint(); //NOT A.randomPoint(), [A randomPoint] or whatever
我尝试使用 C++ 类模板,但它在 CGPoint、CGRect 等方面存在问题。
我怎样才能做到这一点?