I add an activityViewController to my app like below, passing in an image
UIActivityViewController *avc = [[UIActivityViewController alloc]initWithActivityItems:[NSArray arrayWithObjects:img,nil] applicationActivities:[NSArray arrayWithObjects:nil]];
[self presentModalViewController:avc animated:YES];
[avc release];
On the simulator (twitter, facebook and weibo accounts all not configured):
options mail, twitter, facebook, weibo, assign to contact, save to camera roll, print, and copy appear by default.
but on device:
in my app: twitter, facebook and weibo only show if the accounts are configured.
in safari: twitter, facebook and weibo options are available irregardless of whether the accounts are configured.
I am expecting the same behaviour in my app as safari. am I missing a particular step?