框架中的方法不响应方法调用

我已经通过引用这个链接“如何在iOS中创build框架”从现有的代码库创build了一个框架 。 我能够成功地创build一个框架。 现在,我已经将这个框架导入到一个新的项目中,并试图调用它的方法。 但是,这些方法没有任何回应。 即使这些方法中的NSLog语句也没有打印。 也没有erros。 这是非常令人沮丧的。 任何人都可以帮助我,我要去哪里worng …

#import <framework/FIClassA.h>----> this is frame work import - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; self.viewController = [[[TrailOneViewController alloc] initWithNibName:@"TrailOneViewController" bundle:nil] autorelease]; FIClassA *objA = [[FIClassA alloc] init]; //----> creating a object for a class in the framework [objA methodA]; //----> calling a method in the framework self.window.rootViewController = self.viewController; [self.window makeKeyAndVisible]; return YES; 

我已经将这个框架导入到一个新的项目中

您是否还在使用您调用的方法的特定课程中添加了#import?