Search code examples
iphoneipadiosairprint

iOS "Print" or "Send" icon


Where can I get that standard "Send" or "Print" icon that I'm "supposed" to use for AirPrint printing?


Solution

  • 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];