Can some one tell me whether any control or framework is there that will show epub files as an iphone app?
NSString* filePath = [[NSBundle mainBundle] pathForResource:@"LittleBoPeep-ANurseryRhymePictureBook" ofType:@"epub"];
UIWebView* wv = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[self.view addSubview:wv];
[wv loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:filePath]]];