我的客户端为我提供了两个预编译库,blah-device.a和blah-simulator.a.如何告诉
xcode在设备编译模式下使用blah-device.a并在模拟器编译模式下使用模拟器?
我的客户给了我这些指示
- Open the Targets group (in the Groups & Files panel),right-click the
project icon,then select Add >
Existing Frameworks.- In the Linked Libraries section,click the Add Libraries icon (+) icon,
then click Add Other.- Select either blah-device.a (for developing directly on the iPhone
device) or blah-simulator.a (for
developing on the iPhone Simulator),
then click Add.
我已经在那里复制了头文件,但是这些说明并没有使用不同的配置文件轻松构建.
在使用SIMULATOR配置文件构建时,如何使用DEVICE配置文件和blah-simulator.a构建Xcode以链接blah-device.a?
任何帮助是极大的赞赏.