我在 Xcode 4.4 中创建了一个基于数学的应用程序。我在故事板的帮助下使用基于标签栏的应用程序。
我已经在一个单独的类中编写了我所有的数学函数, CalculationMethods
它是 NSObject 的子类。
我的视图控制器:
// FirstViewController.h
#import <UIKit/UIKit.h>
#import "CalculationMethods.h"
@interface FirstViewController : UIViewController
@end
// FirstViewController.m
#import "FirstViewController.h"
#import "CalculationMethods.h"
@interface FirstViewController ()
@end
@implementation FirstViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"%f",[self julianDateFinder: [self currentDayMonthAndYearFinder]]);
}
@end
如您所见,我已经在 FirstViewController.h 和 FirstViewController.m 文件中包含了我的 CalculationMethod.h 文件,但是当我使用该类的方法时,例如julianDateFinder
and currentDayMonthAndYearFinder
,Xcode 错误,说:
“‘FirstViewController’没有可见的@interface声明选择器‘CurrentDayMonthAndYearFinder’”
我是 iOS 和 XCode 的新手。谁能帮我解决错误?