我克隆和修改蘋果的iOS項目模板,我能夠來定義其方法之一如下面的添加方法AppDelegate.m:如何通過一個項目模板定義
<key>Definitions</key>
<dict>
<key>___VARIABLE_classPrefix:identifier___AppDelegate.m:applicationdidFinishLaunchingWithOptions</key>
<string>- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIViewController *mainViewController = [[AppMainViewController alloc] init];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
self.window.rootViewController = mainViewController;
return YES;
}
</string>
被很好地生成的代碼在AppDelegate.m 但以下不會產生「myMethod的」
<key>___VARIABLE_classPrefix:identifier___AppDelegate.m:myMethod</key>
<string>- (void)myMethod:(NSManagedObjectContext *) managedObjectContext
{
//my code
}
</string>
如何通過模板定義介紹一下我自己的方法到類? 謝謝!
你的意思是「不*生成*」嗎? – matt