2

系统:mac osx 10.11.2,xcode 7.2

我想编写一个程序或一个 shell 脚本来从我的项目中删除/添加一个现有的 xxx.framework(不是从苹果的库中导入的) 。

我尝试像这样使用XCodeEditor

XCProject *asProject = [[XCProject alloc] initWithFilePath:@"/Users/xxx/Desktop/project/test/testXCodeConfig/AAA.xcodeproj"];
XCTarget *aTarget = [asProject targetWithName:@"ccc"];
XCSourceFile *file = [asProject fileWithName:@"bbb.framework"];
NSLog(@"%d",originTarget.members.count);
[aTarget removeMemberWithKey:file.key];
NSLog(@"%d",aTarget.members.count);
[asProject save];

但它没有用。我打印了两次相同的计数。

有人知道怎么做吗?谢谢!

4

0 回答 0