开发者_如何学运维Where can I get that standard "Send" or "Print" icon that I'm "supposed" to use for AirPrint printing?
This is the default SystemAction bar button item as you can see below:
UIBarButtonItem *printBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction
target:self
action:@selector(handlePrintTapped)];
[self.navigationItem setRightBarButtonItem:printBarButtonItem animated:TRUE];
精彩评论