我正在努力让我的生活更轻松一些。我从 NSDictionary 获得了很多值,如下所示:
//First, make sure the object exist
if ([myDict objectForKey: @"value"])
{
NSString *string = [myDict objectForKey: @"value"];
//Maybe do other things with the string here...
}
我有一个文件(Variables.h),我在其中存储了很多东西来控制应用程序。如果在那里放一些辅助方法会很好。所以我不想做上面的代码,而是想在 Variables.h 中有一个 c++ 函数,所以我可以这样做:
NSString *string = GetDictValue(myDictionary, @"value");
你怎么写那个c++方法?
提前致谢