开发者

Warning:incomplete implementation of class - iphone sdk warning [closed]

开发者 https://www.devze.com 2023-03-08 02:21 出处:网络
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally ap开发
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally ap开发者_开发技巧plicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 11 years ago.

here is my code

//
//  SecondViewController.m
//
//  Created by tushar chutani on 11-05-16.
//  Copyright 2011 Fleetwood park secondary . All rights reserved.
//
#import "SecondViewController.h"
@implementation SecondViewController;

@synthesize titleForSong;
@synthesize bookDetailViewController;


-(void)viewDidLoad{
[titleForSong becomeFirstResponder];

}

-(IBAction)save{
NSLog(@"save is killed");


}


-(IBAction)cancel
{
[self dismissModalViewControllerAnimated:YES];

}


@end

.h

 #import <UIKit/UIKit.h>
 #import <Foundation/Foundation.h>
#import "sqlite3.h"
#import "iPhoneStreamingPlayerViewController.h"
@class iPhoneStreamingPlayerViewController;

@interface SecondViewController : UIViewController {
UITextField *titleForSong;  
sqlite3 *db;
iPhoneStreamingPlayerViewController *bookDetailViewController;  
}
@property(nonatomic,retain) iPhoneStreamingPlayerViewController     *bookDetailViewController;
-(NSString *)filePath;
@property(nonatomic,retain)IBOutlet UITextField *titleForSong;
-(IBAction)cancel;
-(IBAction)save;
@end


You didn't implement -(NSString *)filePath;

0

精彩评论

暂无评论...
验证码 换一张
取 消