Tagged Questions
4
votes
2answers
1k views
UIPasteboard - cannot copy text
This code should copy the string to the generalPasteboard, as the [[UIPasteboard generalPasteboard] string] object, but the method causes the program to terminate.
- (void)copyResultToPasteboard {
...
3
votes
3answers
342 views
iOS - UIPasteboard not working outside app
I think this is more of an SDK flaw than my apps' but recently I've been trying to use UIPasteboard to copy strings from my app and it works fine to pasting somewhere when I'm inside the app.
When I ...
1
vote
1answer
124 views
iOS - detect when user copy to clipboard - [UIPasteboard generalPasteboard]
quick easy question
while using a WebView with some text in it - the user can select a snippet of text from it
and press a UIButton which I created - running the following action:
...
0
votes
0answers
44 views
The persistancy on my UIPasteboard is still active when the app is uninstalled. why?
I use the UIPasteboard class to use data with severals app. The doc say that the persistancy is removed when the creator application is uninstalled. I do two app, one for copy, the other for past:
...
0
votes
1answer
52 views
UIPasteboard copy fails to paste correctly in Notes and Mail
I'm using the following code to copy a string of text which contains both English and Hebrew characters into UIPasteboard.
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
...
0
votes
0answers
109 views
Separating Strings in a UIPasteboard
I am trying to separate strings from a UIPasteBoard
pasteBoard = [UIPasteboard pasteboardWithName:@"FileManager" create:YES];
NSArray *indexes = [self.tableView indexPathsForSelectedRows];
...
0
votes
1answer
360 views
Pasting image in sms through UIPasteBoard
What I'm trying to do is to paste some images from my app in SMS.
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *imagefile = [[NSBundle mainBundle]
...
0
votes
1answer
453 views
Copying an image to pasteboard transcode jpeg to png
I'm working on an iPhone app to embed/extract data in jpeg files. I want to give the user the ability to copy the resulting image to the clipboard, but the code I'm using coverts the resulting jpeg ...
0
votes
2answers
182 views
Determine font(s) used in uipasteboard text on the iPhone
Here is the scenerio:
The user copies random text with mixed fonts.
How do I determine the font(s) used?
When the text is pasted from the UIPasteboard into a textview it correctly shows the mixed ...