- The persistancy on my UIPasteboard is still active when the app is uninstalled. why?
- -(IBAction)paste:(id)sender{
- UIPasteboard* pb = [UIPasteboard pasteboardWithName:@"mytext" create:YES];
- tv_pasting.text = pb.string;
- }
- -(IBAction)copy:(id)sender{
- UIPasteboard* pb = [UIPasteboard pasteboardWithName:@"mytext" create:YES];
- pb.persistent = YES;
- pb.string = tf_copy.text;
- }