Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.45 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to save uitext view content in photo gallery?
  2. - (IBAction)captureScreen:(id)sender
  3. {  
  4.     CGRect contextRect  = CGRectMake(0,0,320,480);// whatever you need
  5.     UIGraphicsBeginImageContext(contextRect.size);  
  6.     [TextViewName.layer renderInContext:UIGraphicsGetCurrentContext()];
  7.     UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
  8.     UIGraphicsEndImageContext();
  9.     UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
  10. }