I\'d like to add an image to a UIToolBar that a user cannot interact with. It would essentially be just a non-interactive indicator, like a badge.
Is this possible?
Create an UIBarButtonItem
with an Image and add it:
Example:
UIBarButtonItem* item = [[UIBarButtonItem alloc] initWithImage:yourImage style:UIBarButtonItemStyleBordered target:nil action:nil];
If you don't want the button appearance, try to use:
UIBarButtonItem* item = [UIBarButtonItem initWithCustomView:yourImageView];