Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If it's possible to generate a PDF file from a UITableView?

My application has a tableview with custom cells(include textfield, label and button), I wanna generate a pdf file from the tableview.

Bellow is the code(now assume the tableview's content is all visible):

    UIGraphicsBeginImageContext(self._tableView.bounds.size);
    UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, self._tableView.bounds.size.width, self._tableView.bounds.size.height), nil);

    // what's the code here?
    // [self._tableView drawInRect:];

    UIGraphicsEndPDFContext();

I always generate an blank pdf file. Currently what I do is to generate the tableview as a image, then draw the image to the current context, then will get the pdf file. but any nice idea?

like image 543
ZYiOS Avatar asked Oct 12 '22 06:10

ZYiOS


1 Answers

HI , you can convert current view as image through the follwoing code and then you have to use that image to create PDF File through the link

    - (UIImage *)captureView:(UIView *)view {
    CGRect screenRect = [[UIScreen mainScreen] bounds];

    UIGraphicsBeginImageContext(screenRect.size);

    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [[UIColor blackColor] set];
    CGContextFillRect(ctx, screenRect);

    [view.layer renderInContext:ctx];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return newImage;
   }
like image 82
senthilM Avatar answered Oct 25 '22 19:10

senthilM