Note that there are some explanatory texts on larger screens.

plurals
  1. POImplementing iphone's copy/paste controls on a custom view / uiview subclass
    primarykey
    data
    text
    <p>I will admit that there is already a question exactly along these lines here on S.O., but it lacks implementation details, a working answer, and I would like to be more specific, so I think a new question is in order. Obviously, let me know if I'm wrong and we can try to <a href="https://stackoverflow.com/questions/1246198/show-iphone-cut-copy-paste-menu-on-uilabel">restart the thread over there</a>.</p> <p>Basically, I want to copy the text in a UILabel to the pasteboard when a user holds down on the label. Not hard to do, honestly. However, I think the best way to provide visual feedback is to prompt the user with the Copy menu option from <code>UIMenuController</code>.</p> <p>According to the Event Handling section of the iPhone Application Programming Guide, specifically the section on <a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/EventHandling/EventHandling.html#//apple_ref/doc/uid/TP40007072-CH9-SW26" rel="nofollow noreferrer">Copy, Cut, and Paste Operations</a>, it should be possible to provide copy, cut, and/or paste operations from a custom view. </p> <p>So, I've sub-classed UILabel with the following implementation as described by the guide, but the UIMenuController won't show up. There's no indication in the guide that there's anything else required to do this, and the NSLog statement does print out to the console, indicating that the selector is being performed when I hold down on the label:</p> <pre><code>// // CopyLabel.m // HoldEm // // Created by Billy Gray on 1/20/10. // Copyright 2010 Zetetic LLC. All rights reserved. // #import "CopyLabel.h" @implementation CopyLabel - (void)showCopyMenu { NSLog(@"I'm tryin' Ringo, I'm tryin' reeeeal hard."); // bring up editing menu. UIMenuController *theMenu = [UIMenuController sharedMenuController]; // do i even need to show a selection? There's really no point for my implementation... // doing it any way to see if it helps the "not showing up" problem... CGRect selectionRect = [self frame]; [theMenu setTargetRect:selectionRect inView:self]; [theMenu setMenuVisible:YES animated:YES]; // &lt;-- doesn't show up... } // obviously, important to provide this, but whether it's here or not doesn't seem // to change the fact that the UIMenuController view is not showing up - (BOOL)canPerformAction:(SEL)action withSender:(id)sender { BOOL answer = NO; if (action == @selector(copy:)) answer = YES; return answer; } - (BOOL)canBecomeFirstResponder { return YES; } - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [self performSelector:@selector(showCopyMenu) withObject:nil afterDelay:0.8f]; } - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(showCopyMenu) object:nil]; } - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(showCopyMenu) object:nil]; } - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(showCopyMenu) object:nil]; } @end </code></pre> <p>So, what else does one have to do to make this happen? </p> <p><em>For those following along and trying to do this, too, you'll also need to set 'User Interaction Enabled' for the label</em></p> <p>Edit:</p> <p>For clarity, let me add that this should be similar to the little [Copy] menu item that appears over an image in certain iphone views when you hold down on it. -B</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload