我是Objective-C的新手,尽管我在Android方面有很好的经验。我正在尝试调用方法,但是它给了我“函数的首次使用”。我知道我犯了一个愚蠢的错误,但专家可以轻松解决。

RootViewController.h

#import <UIKit/UIKit.h>
#import "ContentViewController.h"

@interface RootViewController : UITableViewController {
    ContentViewController *contentViewController;
}

@property (nonatomic, retain) ContentViewController *contentViewController;

- (NSString*)getContentFileName:(NSString*)title; //<--- This function declartion

@end


RootViewController.m

#import "RootViewController.h"
#import "HAWATAppDelegate.h"
#import "ContentViewController.h"

@implementation RootViewController
@synthesize contentViewController;

...
more methods
...

#pragma mark -
#pragma mark Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    HAWATAppDelegate *appDelegate = (HAWATAppDelegate *)[[UIApplication sharedApplication] delegate];
    NSString *title = (NSString *) [appDelegate.titles objectAtIndex:indexPath.row];

    NSString *fileName = getContentFileName:title; //<--- Here is the error

    ...
}

- (NSString*) getContentFileName:(NSString*)title {
    return [title lowercaseString];
}

@end


我一定缺少一件简单的事情。请告诉我。提前致谢。

最佳答案

我的天啊!!那应该是[self getContentFileName:title];

关于iphone - 未声明-“功能首次使用”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6422250/

10-10 09:12