如何将应用程序类链接到F-Script

我想创建一个命令行应用程序,它接受一个执行的脚本F脚本,并且可以访问应用程序公开的某些类。 我怎样才能做到这一点? PS:我指的是F-Script,而不是FScript。     
已邀请:
查看FScript.app的代码,据报道它链接到大多数Core框架,我发现了以下方法:
- (void)loadSystemFrameworks  // Contributed by Cedric Luthi
{
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

  NSMutableArray *systemFrameworksPaths = [NSMutableArray arrayWithObject:@"/System/Library/Frameworks"];

  if ([[NSUserDefaults standardUserDefaults] boolForKey:@"FScriptLoadPrivateSystemFrameworks"])
    [systemFrameworksPaths addObject:@"/System/Library/PrivateFrameworks"];

  for (NSString *systemFrameworksPath in systemFrameworksPaths)
  {
    for (NSString *framework in [[NSFileManager defaultManager] contentsOfDirectoryAtPath:systemFrameworksPath error:NULL])
    {
      NSBundle *frameworkBundle = [NSBundle bundleWithPath:[systemFrameworksPath stringByAppendingPathComponent:framework]];
      if ([frameworkBundle preflightAndReturnError:nil])
        [frameworkBundle load];
    }
  }

  [pool drain];
}
我把它链接到从应用程序定义的类就足以加载包含类的包。     

要回复问题请先登录注册