0

私はUIWebViewアクションCopyを処理pasteしています..それがどのように機能するのか正確にはわかりません..私がする必要があるのは...リンクをタップすると、 URLandをコピーするUiTextFieldBrowser bar、貼り付けることができるはずです...

私がやっていることは:

- (void)actionSheet:(UIActionSheet *)actionSheet
clickedButtonAtIndex:(NSInteger)buttonIndex {

if([title isEqualToString:@"Copy"]){ 

   NSURL *requestedURL = [request URL];
   NSString *link = [requestedURL absoluteString];
    UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

    pasteboard.string = link;

    NSLog(@"paste is %@",pasteboard.string); // this does not give me the anything
  }

コピー方法のどこが間違っているか教えてください、、、それをどのように貼り付けるか

4

1 に答える 1

1

このリンクにアクセスしてください: - http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIPasteboard_Class/Reference.html

[[UIPasteboard generalPasteboard] containsPasteboardTypes:UIPasteboardTypeListString];
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; 
if (pasteboard.string != nil) { [self insertText:pasteboard.string]; }
于 2013-02-05T05:21:35.173 に答える