Questions tagged «objective-c++»

3
什么是Objective C ++?[关闭]
在这里很难说出要问什么。这个问题是模棱两可,含糊不清,不完整,过于宽泛或夸张的,不能以目前的形式合理地回答。如需帮助澄清此问题以便可以重新打开, 请访问帮助中心。 7年前关闭。 什么是Objective C ++,我可以在Xcode中使用这种语言吗?


6
如何将std :: string转换为NSString?
嗨,我正在尝试将标准std::string转换为,NSString但运气不佳。 我可以从一个成功地转换NSString为std::string用下面的代码 NSString *realm = @"Hollywood"; std::string REALM = [realm cStringUsingEncoding:[NSString defaultCStringEncoding]]; 但是当我尝试以下操作时出现编译时错误 NSString *errorMessage = [NSString stringWithCString:REALM encoding:[NSString defaultCStringEncoding]]; 我得到的错误是 Cannot convert 'std::string' to 'const char*' in argument passing 我在这里想念什么吗? 提前致谢。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.