Is there any way I can invoke paste from the code? I found the following code
but UIResponder doesn't have a paste method.

Art

@interface UIResponder(UIResponderInsertTextAdditions)
- (void) insertText: (NSString*) text;
@end

@implementation UIResponder(UIResponderInsertTextAdditions)

- (void) insertText: (NSString*) text
{
        // Get a refererence to the system pasteboard because that's
        // the only one @selector(paste:) will use.
        UIPasteboard* generalPasteboard = [UIPasteboard generalPasteboard];
        
        // Save a copy of the system pasteboard's items
        // so we can restore them later.
        NSArray* items = [generalPasteboard.items copy];
        
        // Set the contents of the system pasteboard
        // to the text we wish to insert.
        generalPasteboard.string = text;
        
        // Tell this responder to paste the contents of the
        // system pasteboard at the current cursor location.
        [self paste: self];
        
        // Restore the system pasteboard to its original items.
        generalPasteboard.items = items;
        
        // Free the items array we copied earlier.
        [items release];
}

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Invoke-copy-paste-from-the-code-tp3840155p3840155.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to