根据所选的tableview行在

时间:2015-08-08 21:03:05

标签: objective-c uitableview pdf uiwebview

我从sqlite数据库中检索所有数据。我可以让他们填充表格视图。当我点击一行时,webview会打开,但不会显示pdf文件。视图只是纯白色背景。没有崩溃,没有错误,根本没有显示任何东西。 这是我的代码。不确定我做错了什么。

#import "PdfTableVC.h"
#import "PdfVC.h"

@interface PdfTableVC ()

@end

@implementation PdfTableVC {
NSMutableArray *listOfPdf;
}

@synthesize pdfTable;

- (void)viewDidLoad {
[super viewDidLoad];
[self initDatabase];
[self getPoints];
}

#pragma mark - View lifecycle

-(void)initDatabase{
BOOL success;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:@"my.db"];
success = [fileManager fileExistsAtPath:writableDBPath];
if (success)
{
    return;
}
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"my.db"];
success = [fileManager copyItemAtPath:defaultDBPath toPath:writableDBPath error:&error];
if (!success)
{
    NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
}
}

-(void)getPoints{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"my.db"];
if (sqlite3_open([path UTF8String], &database) == SQLITE_OK)
{

    const char *sql = "SELECT * FROM file_geositi";

    sqlite3_stmt *searchStatement;


    if (sqlite3_prepare_v2(database, sql, -1, &searchStatement, NULL) == SQLITE_OK)
    {

        listOfPdf = [[NSMutableArray alloc] init];


        while (sqlite3_step(searchStatement) == SQLITE_ROW)
        {

            NSString *pdf = [NSString stringWithUTF8String:(char *)sqlite3_column_text(searchStatement,0)];


            [listOfPdf addObject:pdf];


        }
    }
    sqlite3_finalize(searchStatement);
}
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [listOfPdf count];
}

//Table View cell
 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *simpleTableIdentifier =@"pdfCell";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if(cell == nil){
    cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}

cell.textLabel.text = [listOfPdf objectAtIndex:indexPath.row];

return cell;
}

//Detail View items
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"showPDF"]) {
    NSIndexPath *indexPath = [self.pdfTable indexPathForSelectedRow];
     PdfVC *destViewController = (PdfVC *)segue.destinationViewController;
     destViewController.dataPdf= [listOfPdf objectAtIndex:indexPath.row];    
 }
}

PdfVC.h

#import <UIKit/UIKit.h>

@interface PdfVC : UIViewController

//UIWebView
@property (nonatomic, strong) IBOutlet UIWebView *webView;
@property (nonatomic, strong) NSString *dataPdf;

@end

PdfVC.m

#import "PdfVC.h"

@interface PdfVC ()

@end

@implementation PdfVC
@synthesize webView;
@synthesize dataPdf;


- (void)viewDidLoad {
[super viewDidLoad];

//No sure about this and in fact makes the app crash   
NSString *pdfName = [NSString stringWithFormat:@"%@", [self.dataPdf description]];
NSString *path = [[NSBundle mainBundle] pathForResource:pdfName ofType:@"pdf"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];


}


@end

有任何帮助吗?感谢名单

1 个答案:

答案 0 :(得分:1)

好的,所以看了你的代码后,我发现了以下内容:

  • 您将PDF名称存储在SQLite数据库中(我不是真的 了解这样做的目的,但是让我们说你需要) 名称&#39; pdf_1&#39;,&#39; pdf_2&#39;和&#39; pdf_3&#39;,但这些不匹配 在支持文件文件夹中使用PDF的实际文件名 这是&#39; PDF 1&#39;等
  • 其次,您只是将从数据库中提取的PDF名称传递给PdfVC,实际上什么也没做,您必须在这里将PDF实际加载到webView中,所以它实际上是什么都不做。

<强>解决方案:

  • 重命名PDF&#39; PDF 1&#39;等等&#39; pdf_1&#39;等等,以便它们与数据库中存储的实际名称匹配,或重命名数据库中的条目以匹配PDF的文件名。
  • 其次,将以下代码放入viewDidLoad视图控制器的PdfVC方法中:

    NSString *path = [[NSBundle mainBundle] pathForResource:dataPdf ofType:@"pdf"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [webView loadRequest:request];
    

所有这些代码所做的就是它使用存储在属性dataPdf中的名称(通过segue传递)从资源中获取正确的PDF,然后将该PDF加载到webView中。

我建议你在这里重新考虑一下实际数据库的用途,因为你所做的就是将PDF的名称存储到表格中。它可能根本不需要,您可以在NSArray视图控制器中保留PDFTableVC个PDF名称。

希望这能回答你的问题。