当引用了其他工程时,在编译时报错,提示你编译指令架构不对,你需要查看一下这几个工程的Architecture部分是否又冲突,比如主工程设置Valid Architecture为armv7 而 另一个子工程却设置了build active architecture only 为yes,这时如果你插入了armv7s的设备,编译就会报错,因为子工程编译出来的库文件是armv7s的,而主工程需要的是armv7的,就报错了!最好把build active architecture only 设置为NO,并
当主工程引用其他工程,以便使用他们生成的库的时候,在发布时,主要注意这个选项.这个选项的说明如下 Activating this setting when deployment locations are used causes the product to be built into an alternative location instead of the install location. 上面说如果你启用了这个选项,并且设置了安装路径(感觉就是installation build pr
Delphi 正则表达式语法(8): 引用子表达式 - 也叫反向引用 //准备: 我们先写一个搜索所有英文单词的表达式 var reg: TPerlRegEx; begin reg := TPerlRegEx.Create(nil); reg.Subject := 'one two three four five six seven eight nine ten'; reg.RegEx := '\b[A-Za-z]+\b'; //这个表达式就可以找到所有的英文单词 reg.