例如,如果我从XCode(模拟器或连接的iPhone)运行,我想连接到我的本地数据库。
如果它没有从XCode运行,我将连接到我的Web数据库。
我见过这样的话:
#if TARGET_IPHONE_SIMULATOR
但我不确定它是否适用于在设备上进行模拟。
答案 0 :(得分:2)
您可以使用Technical Q&A QA1361中的以下代码确定您的应用是否在调试器下运行。
#include <assert.h>
#include <stdbool.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/sysctl.h>
static bool AmIBeingDebugged(void)
// Returns true if the current process is being debugged (either
// running under the debugger or has a debugger attached post facto).
{
int junk;
int mib[4];
struct kinfo_proc info;
size_t size;
// Initialize the flags so that, if sysctl fails for some bizarre
// reason, we get a predictable result.
info.kp_proc.p_flag = 0;
// Initialize mib, which tells sysctl the info we want, in this case
// we're looking for information about a specific process ID.
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
// Call sysctl.
size = sizeof(info);
junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
assert(junk == 0);
// We're being debugged if the P_TRACED flag is set.
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
}
在模拟器和设备(iPhone 4,iOS 5.0.1)下成功测试。
重要因为kinfo_proc结构的定义(in )由__APPLE_API_UNSTABLE条件化,你应该 将上述代码的使用限制在程序的调试版本中。
答案 1 :(得分:1)
您可以让编译器在构建中选择不同的代码,具体取决于Debug与Release Build设置中的不同预处理器宏。 Debug可以使用local,而Release则使用web。