Quote:
Originally Posted by shabzcohelp
Hello once again,
I am having a problem copying both a UIImage and a String to the pasteboard.
if I use
Code:
pasteboard.image = myImage;
alone or
Code:
pasteboard.string = myString;
it works, but if I try to combine them using NSDictionary it doesn't work. Here is the code that I used
Code:
NSDictionary *item = [NSDictionary dictionaryWithObjectsAndKeys: myString, @"myfield", Image1.image,@"image", nil];
pasteboard.items = [NSArray arrayWithObject:item];
|
bump! Does anyone know how to do this?