Click here to Skip to main content
15,881,803 members
Articles / Mobile Apps / iPhone

Audiobook Player for iPhone

Rate me:
Please Sign up or sign in to vote.
4.73/5 (16 votes)
8 Sep 2010CPOL9 min read 85.2K   2.4K   27  
An iPhone media player designed specifically for listening to audiobooks
//
//  cEditPanelVC.h
//  abPlayer
//
//  Created by Broch Pirate on 3/4/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface cEditPanelVC : UIViewController <UITextFieldDelegate>
{
	UINavigationController* navCtrl;
	IBOutlet UITextField* lbl;
	NSString* oldName;
	id responder;
	NSString* saveAction;
}
@property (assign) id responder;

+(NSString*)getNibName;
- (id)initWithNibNameAndMore:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
						 nav:(UINavigationController*)nav title:(NSString*)text 
					 lblText:(NSString*)lblText action:(NSString*)action;
-(IBAction)btnDonePushed;
@end

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions