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

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 14  |  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. The persistancy on my UIPasteboard is still active when the app is uninstalled. why?
  2. -(IBAction)paste:(id)sender{
  3.     UIPasteboard* pb = [UIPasteboard pasteboardWithName:@"mytext" create:YES];
  4.     tv_pasting.text = pb.string;
  5.  
  6. }
  7.        
  8. -(IBAction)copy:(id)sender{
  9.  
  10.     UIPasteboard* pb = [UIPasteboard pasteboardWithName:@"mytext" create:YES];
  11.     pb.persistent = YES;
  12.     pb.string = tf_copy.text;
  13. }