StackOverflow 文档 Objective-C Language 教程 方法 方法参数 方法参数 Created: November-22, 2018 如果要在调用方法时将值传递给方法,请使用以下参数: - (int)addInt:(int)intOne toInt:(int)intTwo { return intOne + intTwo; } 冒号(:)将参数与方法名称分开。 参数类型在括号 (int) 中。 参数名称位于参数类型之后。 创建一个基本方法类方法