我正在尝试创建一个String扩展来执行类似的操作
@H_403_16@"My name is %@. I am %d years old".localizeWithFormat("John",30)
看起来像这样
extension String { func localizeWithFormat(arguments: CVarArgType...) -> String { return String.localizedStringWithFormat( NSLocalizedString(self,comment: ""),getVaList(arguments)) } }
它给我以下编译错误
Type CVaListPointer does not conform to protocol CVargType