0
我有一些代碼需要運行iPhone。不過我想在模擬器上測試我的應用程序。在iPhone上我用這個返回值:返回值對於模擬器上的NSDictionary,iPhone
return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:-1], @"number"];
我正在尋找這樣的事情,我認爲:
- (NSDictionary *) data
{
#if TARGET_IPHONE_SIMULATOR
something in here to return a value of 70;
#else .....
我想在模擬器使用返回值70。
有人能幫我一下嗎?