pub struct UIBarButtonItem { /* private fields */ }UIBarButtonItem and UIBarItem only.Expand description
Implementations§
Source§impl UIBarButtonItem
impl UIBarButtonItem
pub fn init(this: Allocated<Self>) -> Retained<Self>
Sourcepub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>
pub unsafe fn initWithCoder( this: Allocated<Self>, coder: &NSCoder, ) -> Option<Retained<Self>>
§Safety
coder possibly has further requirements.
Sourcepub unsafe fn initWithImage_style_target_action(
this: Allocated<Self>,
image: Option<&UIImage>,
style: UIBarButtonItemStyle,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>
Available on crate feature UIImage only.
pub unsafe fn initWithImage_style_target_action( this: Allocated<Self>, image: Option<&UIImage>, style: UIBarButtonItemStyle, target: Option<&AnyObject>, action: Option<Sel>, ) -> Retained<Self>
UIImage only.§Safety
targetshould be of the correct type.actionmust be a valid selector.
Sourcepub unsafe fn initWithImage_landscapeImagePhone_style_target_action(
this: Allocated<Self>,
image: Option<&UIImage>,
landscape_image_phone: Option<&UIImage>,
style: UIBarButtonItemStyle,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>
Available on crate feature UIImage only.
pub unsafe fn initWithImage_landscapeImagePhone_style_target_action( this: Allocated<Self>, image: Option<&UIImage>, landscape_image_phone: Option<&UIImage>, style: UIBarButtonItemStyle, target: Option<&AnyObject>, action: Option<Sel>, ) -> Retained<Self>
UIImage only.§Safety
targetshould be of the correct type.actionmust be a valid selector.
Sourcepub unsafe fn initWithTitle_style_target_action(
this: Allocated<Self>,
title: Option<&NSString>,
style: UIBarButtonItemStyle,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>
pub unsafe fn initWithTitle_style_target_action( this: Allocated<Self>, title: Option<&NSString>, style: UIBarButtonItemStyle, target: Option<&AnyObject>, action: Option<Sel>, ) -> Retained<Self>
§Safety
targetshould be of the correct type.actionmust be a valid selector.
Sourcepub unsafe fn initWithBarButtonSystemItem_target_action(
this: Allocated<Self>,
system_item: UIBarButtonSystemItem,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>
pub unsafe fn initWithBarButtonSystemItem_target_action( this: Allocated<Self>, system_item: UIBarButtonSystemItem, target: Option<&AnyObject>, action: Option<Sel>, ) -> Retained<Self>
§Safety
targetshould be of the correct type.actionmust be a valid selector.
pub fn initWithCustomView( this: Allocated<Self>, custom_view: &UIView, ) -> Retained<Self>
UIResponder and UIView only.Sourcepub fn initWithBarButtonSystemItem_primaryAction(
this: Allocated<Self>,
system_item: UIBarButtonSystemItem,
primary_action: Option<&UIAction>,
) -> Retained<Self>
Available on crate features UIAction and UIMenuElement only.
pub fn initWithBarButtonSystemItem_primaryAction( this: Allocated<Self>, system_item: UIBarButtonSystemItem, primary_action: Option<&UIAction>, ) -> Retained<Self>
UIAction and UIMenuElement only.Creates a bar button item for the given systemItem. The primaryAction is copied, and its title & image are ignored.
Sourcepub fn initWithPrimaryAction(
this: Allocated<Self>,
primary_action: Option<&UIAction>,
) -> Retained<Self>
Available on crate features UIAction and UIMenuElement only.
pub fn initWithPrimaryAction( this: Allocated<Self>, primary_action: Option<&UIAction>, ) -> Retained<Self>
UIAction and UIMenuElement only.Creates a plain-style bar button item from the properties of primaryAction. primaryAction is copied.
Available on crate features UIMenu and UIMenuElement only.
UIMenu and UIMenuElement only.Creates a bar button item for the given systemItem. The constructed item will present the menu immediately when touched.
Available on crate features UIMenu and UIMenuElement only.
UIMenu and UIMenuElement only.Creates a plain-style bar button item with the given title. The constructed item will present the menu immediately when touched.
Available on crate features UIImage and UIMenu and UIMenuElement only.
UIImage and UIMenu and UIMenuElement only.Creates a plain-style bar button item with the given image. The constructed item will present the menu immediately when touched.
Available on crate features UIAction and UIMenu and UIMenuElement only.
UIAction and UIMenu and UIMenuElement only.Creates a plain-style bar button item from the properties of primaryAction. primaryAction is copied.
Available on crate features UIAction and UIMenu and UIMenuElement only.
UIAction and UIMenu and UIMenuElement only.Creates a bar button item for the given systemItem. The primaryAction is copied, and its title & image are ignored.
Available on crate features UIImage and UIMenu and UIMenuElement only.
UIImage and UIMenu and UIMenuElement only.Creates a plain-style bar button item with the given title and image.
§Safety
targetshould be of the correct type.actionmust be a valid selector.
Sourcepub fn fixedSpaceItemOfWidth(
width: CGFloat,
mtm: MainThreadMarker,
) -> Retained<Self>
Available on crate feature objc2-core-foundation only.
pub fn fixedSpaceItemOfWidth( width: CGFloat, mtm: MainThreadMarker, ) -> Retained<Self>
objc2-core-foundation only.Construct a new fixed space item with the given width.
Sourcepub fn flexibleSpaceItem(mtm: MainThreadMarker) -> Retained<Self>
pub fn flexibleSpaceItem(mtm: MainThreadMarker) -> Retained<Self>
Construct a new flexible space item.
Sourcepub fn fixedSpaceItem(mtm: MainThreadMarker) -> Retained<Self>
pub fn fixedSpaceItem(mtm: MainThreadMarker) -> Retained<Self>
Creates a new fixed space item of zero width.
A fixed space of 0 width separates the shared background used in navigation bars and toolbars to visually group items.
pub fn style(&self) -> UIBarButtonItemStyle
Sourcepub fn setStyle(&self, style: UIBarButtonItemStyle)
pub fn setStyle(&self, style: UIBarButtonItemStyle)
Setter for style.
pub fn width(&self) -> CGFloat
objc2-core-foundation only.Sourcepub fn setWidth(&self, width: CGFloat)
Available on crate feature objc2-core-foundation only.
pub fn setWidth(&self, width: CGFloat)
objc2-core-foundation only.Setter for width.
pub fn possibleTitles(&self) -> Option<Retained<NSSet<NSString>>>
Sourcepub fn setPossibleTitles(&self, possible_titles: Option<&NSSet<NSString>>)
pub fn setPossibleTitles(&self, possible_titles: Option<&NSSet<NSString>>)
Setter for possibleTitles.
This is copied when set.
pub fn customView(&self) -> Option<Retained<UIView>>
UIResponder and UIView only.Sourcepub fn setCustomView(&self, custom_view: Option<&UIView>)
Available on crate features UIResponder and UIView only.
pub fn setCustomView(&self, custom_view: Option<&UIView>)
UIResponder and UIView only.Setter for customView.
pub fn target(&self) -> Option<Retained<AnyObject>>
Sourcepub fn primaryAction(&self) -> Option<Retained<UIAction>>
Available on crate features UIAction and UIMenuElement only.
pub fn primaryAction(&self) -> Option<Retained<UIAction>>
UIAction and UIMenuElement only.Set the primaryAction on this item, updating the title & image of the item if appropriate (primaryAction’s title is non-nil for the title update, primaryAction’s image is non-nil for the image update, and if this is not a system item). When primaryAction is non-nil, the target & action properties are ignored. If primaryAction is set to nil, the title & image properties are left unchanged.
Sourcepub fn setPrimaryAction(&self, primary_action: Option<&UIAction>)
Available on crate features UIAction and UIMenuElement only.
pub fn setPrimaryAction(&self, primary_action: Option<&UIAction>)
UIAction and UIMenuElement only.Setter for primaryAction.
This is copied when set.
Available on crate features UIMenu and UIMenuElement only.
UIMenu and UIMenuElement only.When non-nil the menu is presented, the gesture used to trigger the menu is based on if the bar button item would normally trigger an action when tapped.
Sourcepub fn setMenu(&self, menu: Option<&UIMenu>)
Available on crate features UIMenu and UIMenuElement only.
pub fn setMenu(&self, menu: Option<&UIMenu>)
UIMenu and UIMenuElement only.Sourcepub fn preferredMenuElementOrder(
&self,
) -> UIContextMenuConfigurationElementOrder
Available on crate feature UIContextMenuConfiguration only.
pub fn preferredMenuElementOrder( &self, ) -> UIContextMenuConfigurationElementOrder
UIContextMenuConfiguration only.Preferred menu element ordering strategy for menus displayed by this button.
Sourcepub fn setPreferredMenuElementOrder(
&self,
preferred_menu_element_order: UIContextMenuConfigurationElementOrder,
)
Available on crate feature UIContextMenuConfiguration only.
pub fn setPreferredMenuElementOrder( &self, preferred_menu_element_order: UIContextMenuConfigurationElementOrder, )
UIContextMenuConfiguration only.Setter for preferredMenuElementOrder.
Sourcepub fn changesSelectionAsPrimaryAction(&self) -> bool
pub fn changesSelectionAsPrimaryAction(&self) -> bool
Indicates if the button changes selection as its primary action. This shows the menu as options for selection if a menu is populated and no action when tapped is enabled. If no menu is provided and no action is enabled when tapped, the item is toggled on and off for the primary action.
Sourcepub fn setChangesSelectionAsPrimaryAction(
&self,
changes_selection_as_primary_action: bool,
)
pub fn setChangesSelectionAsPrimaryAction( &self, changes_selection_as_primary_action: bool, )
Setter for changesSelectionAsPrimaryAction.
pub fn isSelected(&self) -> bool
Sourcepub fn setSelected(&self, selected: bool)
pub fn setSelected(&self, selected: bool)
Setter for isSelected.
Sourcepub fn isSymbolAnimationEnabled(&self) -> bool
pub fn isSymbolAnimationEnabled(&self) -> bool
Whether or not symbol animations are enabled for this bar button item.
Sourcepub fn setSymbolAnimationEnabled(&self, symbol_animation_enabled: bool)
pub fn setSymbolAnimationEnabled(&self, symbol_animation_enabled: bool)
Setter for isSymbolAnimationEnabled.
Available on crate feature UIMenuElement only.
UIMenuElement only.A UIMenuElement that should substitute for the UIBarButtonItem when displayed in a menu.
Sourcepub fn setMenuRepresentation(&self, menu_representation: Option<&UIMenuElement>)
Available on crate feature UIMenuElement only.
pub fn setMenuRepresentation(&self, menu_representation: Option<&UIMenuElement>)
UIMenuElement only.Setter for menuRepresentation.
This is copied when set.
A boolean value indicating whether the background this item may share with other items in the bar should be hidden.
Set this property to YES to prevent the standard shared background (typically using the Glass effect)
from being drawn behind this bar button item.
This item will not be visually grouped with any other items,
without the standard shared background.
This property is ignored if the item is in a UIBarButtonItemGroup with more than one item.
The default value is NO.
Setter for hidesSharedBackground.
A boolean value indicating whether this bar button item can share a background with other items in a navigation bar or a toolbar.
When NO, This item will not be visually grouped with any other items.
This property is ignored if the item is in a UIBarButtonItemGroup with more than one item.
The default value is YES.
Setter for sharesBackground.
Sourcepub fn identifier(&self) -> Option<Retained<NSString>>
pub fn identifier(&self) -> Option<Retained<NSString>>
An identifier used to match bar button items across transitions in a navigation bar or toolbar.
When the set of bar button items in a navigation bar or toolbar changes (for example, when pushing or popping view controllers), UIKit automatically animates the transition between the different sets of items. By default, UIKit uses heuristics based on item position and content to determine which items should be matched for these transitions.
Set this property with the same value on two different bar button items in different navigation item configurations to indicate that they should be treated as the same item during transitions. This allows for more natural animations when the visuals or function of an item changes across contexts.
The default value is nil, which means UIKit will use its default heuristics for transitions.
Sourcepub fn setIdentifier(&self, identifier: Option<&NSString>)
pub fn setIdentifier(&self, identifier: Option<&NSString>)
Setter for identifier.
This is copied when set.
Sourcepub fn creatingFixedGroup(&self) -> Retained<UIBarButtonItemGroup>
Available on crate feature UIBarButtonItemGroup only.
pub fn creatingFixedGroup(&self) -> Retained<UIBarButtonItemGroup>
UIBarButtonItemGroup only.Create a fixed group containing this bar button item. UIBarButtonItems may only be in a single UIBarButtonItemGroup at a time, adding a bar button item to a group removes it from any previous group.
Sourcepub fn creatingMovableGroupWithCustomizationIdentifier(
&self,
customization_identifier: &NSString,
) -> Retained<UIBarButtonItemGroup>
Available on crate feature UIBarButtonItemGroup only.
pub fn creatingMovableGroupWithCustomizationIdentifier( &self, customization_identifier: &NSString, ) -> Retained<UIBarButtonItemGroup>
UIBarButtonItemGroup only.Create a movable group containing this bar button item. UIBarButtonItems may only be in a single UIBarButtonItemGroup at a time, adding a bar button item to a group removes it from any previous group.
Sourcepub fn creatingOptionalGroupWithCustomizationIdentifier_inDefaultCustomization(
&self,
customization_identifier: &NSString,
in_default_customization: bool,
) -> Retained<UIBarButtonItemGroup>
Available on crate feature UIBarButtonItemGroup only.
pub fn creatingOptionalGroupWithCustomizationIdentifier_inDefaultCustomization( &self, customization_identifier: &NSString, in_default_customization: bool, ) -> Retained<UIBarButtonItemGroup>
UIBarButtonItemGroup only.Create an optional group containing this bar button item. UIBarButtonItems may only be in a single UIBarButtonItemGroup at a time, adding a bar button item to a group removes it from any previous group.
pub fn setBackgroundImage_forState_barMetrics( &self, background_image: Option<&UIImage>, state: UIControlState, bar_metrics: UIBarMetrics, )
UIBarCommon and UIControl and UIImage only.pub fn backgroundImageForState_barMetrics( &self, state: UIControlState, bar_metrics: UIBarMetrics, ) -> Option<Retained<UIImage>>
UIBarCommon and UIControl and UIImage only.pub fn setBackgroundImage_forState_style_barMetrics( &self, background_image: Option<&UIImage>, state: UIControlState, style: UIBarButtonItemStyle, bar_metrics: UIBarMetrics, )
UIBarCommon and UIControl and UIImage only.pub fn backgroundImageForState_style_barMetrics( &self, state: UIControlState, style: UIBarButtonItemStyle, bar_metrics: UIBarMetrics, ) -> Option<Retained<UIImage>>
UIBarCommon and UIControl and UIImage only.pub fn tintColor(&self) -> Option<Retained<UIColor>>
UIColor only.Sourcepub fn setTintColor(&self, tint_color: Option<&UIColor>)
Available on crate feature UIColor only.
pub fn setTintColor(&self, tint_color: Option<&UIColor>)
UIColor only.Setter for tintColor.
pub fn setBackgroundVerticalPositionAdjustment_forBarMetrics( &self, adjustment: CGFloat, bar_metrics: UIBarMetrics, )
UIBarCommon and objc2-core-foundation only.pub fn backgroundVerticalPositionAdjustmentForBarMetrics( &self, bar_metrics: UIBarMetrics, ) -> CGFloat
UIBarCommon and objc2-core-foundation only.pub fn setTitlePositionAdjustment_forBarMetrics( &self, adjustment: UIOffset, bar_metrics: UIBarMetrics, )
UIBarCommon and UIGeometry and objc2-core-foundation only.pub fn titlePositionAdjustmentForBarMetrics( &self, bar_metrics: UIBarMetrics, ) -> UIOffset
UIBarCommon and UIGeometry and objc2-core-foundation only.pub fn setBackButtonBackgroundImage_forState_barMetrics( &self, background_image: Option<&UIImage>, state: UIControlState, bar_metrics: UIBarMetrics, )
UIBarCommon and UIControl and UIImage only.pub fn backButtonBackgroundImageForState_barMetrics( &self, state: UIControlState, bar_metrics: UIBarMetrics, ) -> Option<Retained<UIImage>>
UIBarCommon and UIControl and UIImage only.pub fn setBackButtonTitlePositionAdjustment_forBarMetrics( &self, adjustment: UIOffset, bar_metrics: UIBarMetrics, )
UIBarCommon and UIGeometry and objc2-core-foundation only.pub fn backButtonTitlePositionAdjustmentForBarMetrics( &self, bar_metrics: UIBarMetrics, ) -> UIOffset
UIBarCommon and UIGeometry and objc2-core-foundation only.pub fn setBackButtonBackgroundVerticalPositionAdjustment_forBarMetrics( &self, adjustment: CGFloat, bar_metrics: UIBarMetrics, )
UIBarCommon and objc2-core-foundation only.pub fn backButtonBackgroundVerticalPositionAdjustmentForBarMetrics( &self, bar_metrics: UIBarMetrics, ) -> CGFloat
UIBarCommon and objc2-core-foundation only.Source§impl UIBarButtonItem
Methods declared on superclass NSObject.
impl UIBarButtonItem
Methods declared on superclass NSObject.
pub fn new(mtm: MainThreadMarker) -> Retained<Self>
impl UIBarButtonItem
SpringLoading.
Source§impl UIBarButtonItem
impl UIBarButtonItem
Sourcepub fn addSymbolEffect(&self, symbol_effect: &NSSymbolEffect)
Available on crate feature objc2-symbols only.
pub fn addSymbolEffect(&self, symbol_effect: &NSSymbolEffect)
objc2-symbols only.Adds a symbol effect to the bar button item with default options and animation. Only a subset of symbol effects are supported; Appear and Disappear effects, for example, are unsupported, and will assert.
Sourcepub fn addSymbolEffect_options(
&self,
symbol_effect: &NSSymbolEffect,
options: &NSSymbolEffectOptions,
)
Available on crate feature objc2-symbols only.
pub fn addSymbolEffect_options( &self, symbol_effect: &NSSymbolEffect, options: &NSSymbolEffectOptions, )
objc2-symbols only.Adds a symbol effect to the bar button item with specified options and default animation. Only a subset of symbol effects are supported; Appear and Disappear effects, for example, are unsupported, and will assert.
Sourcepub fn addSymbolEffect_options_animated(
&self,
symbol_effect: &NSSymbolEffect,
options: &NSSymbolEffectOptions,
animated: bool,
)
Available on crate feature objc2-symbols only.
pub fn addSymbolEffect_options_animated( &self, symbol_effect: &NSSymbolEffect, options: &NSSymbolEffectOptions, animated: bool, )
objc2-symbols only.Adds a symbol effect to the bar button item with specified options and animation. Only a subset of symbol effects are supported; Appear and Disappear effects, for example, are unsupported, and will assert.
Sourcepub fn removeSymbolEffectOfType(&self, symbol_effect: &NSSymbolEffect)
Available on crate feature objc2-symbols only.
pub fn removeSymbolEffectOfType(&self, symbol_effect: &NSSymbolEffect)
objc2-symbols only.Removes from the bar button item the symbol effect matching the type of effect passed in, with default options and animation.
Sourcepub fn removeSymbolEffectOfType_options(
&self,
symbol_effect: &NSSymbolEffect,
options: &NSSymbolEffectOptions,
)
Available on crate feature objc2-symbols only.
pub fn removeSymbolEffectOfType_options( &self, symbol_effect: &NSSymbolEffect, options: &NSSymbolEffectOptions, )
objc2-symbols only.Removes from the bar button item the symbol effect matching the type of effect passed in, with specified options and default animation.
Sourcepub fn removeSymbolEffectOfType_options_animated(
&self,
symbol_effect: &NSSymbolEffect,
options: &NSSymbolEffectOptions,
animated: bool,
)
Available on crate feature objc2-symbols only.
pub fn removeSymbolEffectOfType_options_animated( &self, symbol_effect: &NSSymbolEffect, options: &NSSymbolEffectOptions, animated: bool, )
objc2-symbols only.Removes from the bar button item the symbol effect matching the type of effect passed in, with specified options and animation.
Sourcepub fn removeAllSymbolEffects(&self)
pub fn removeAllSymbolEffects(&self)
Removes all symbol effects from the bar button item with default options and animation.
Sourcepub fn removeAllSymbolEffectsWithOptions(&self, options: &NSSymbolEffectOptions)
Available on crate feature objc2-symbols only.
pub fn removeAllSymbolEffectsWithOptions(&self, options: &NSSymbolEffectOptions)
objc2-symbols only.Removes all symbol effects from the bar button item with specified options and default animation.
Sourcepub fn removeAllSymbolEffectsWithOptions_animated(
&self,
options: &NSSymbolEffectOptions,
animated: bool,
)
Available on crate feature objc2-symbols only.
pub fn removeAllSymbolEffectsWithOptions_animated( &self, options: &NSSymbolEffectOptions, animated: bool, )
objc2-symbols only.Removes all symbol effects from the bar button item with specified options and animation.
Sourcepub fn setSymbolImage_withContentTransition(
&self,
symbol_image: &UIImage,
transition: &NSSymbolContentTransition,
)
Available on crate features UIImage and objc2-symbols only.
pub fn setSymbolImage_withContentTransition( &self, symbol_image: &UIImage, transition: &NSSymbolContentTransition, )
UIImage and objc2-symbols only.Sets the symbol image on the bar button item with a symbol content transition and default options. Passing in a non-symbol image will result in undefined behavior.
Sourcepub fn setSymbolImage_withContentTransition_options(
&self,
symbol_image: &UIImage,
transition: &NSSymbolContentTransition,
options: &NSSymbolEffectOptions,
)
Available on crate features UIImage and objc2-symbols only.
pub fn setSymbolImage_withContentTransition_options( &self, symbol_image: &UIImage, transition: &NSSymbolContentTransition, options: &NSSymbolEffectOptions, )
UIImage and objc2-symbols only.Sets the symbol image on the bar button item with a symbol content transition and specified options. Passing in a non-symbol image will result in undefined behavior.
Source§impl UIBarButtonItem
Badging.
impl UIBarButtonItem
Badging.
Sourcepub fn badge(&self) -> Option<Retained<UIBarButtonItemBadge>>
Available on crate feature UIBarButtonItemBadge only.
pub fn badge(&self) -> Option<Retained<UIBarButtonItemBadge>>
UIBarButtonItemBadge only.Sets a badge on the bar button item. Currently only supported in navigation bars.
Sourcepub fn setBadge(&self, badge: Option<&UIBarButtonItemBadge>)
Available on crate feature UIBarButtonItemBadge only.
pub fn setBadge(&self, badge: Option<&UIBarButtonItemBadge>)
UIBarButtonItemBadge only.Setter for badge.
Source§impl UIBarButtonItem
UIBarButtonItemGroup.
impl UIBarButtonItem
UIBarButtonItemGroup.
Available on crate feature UIBarButtonItemGroup only.
UIBarButtonItemGroup only.The group that the UIBarButtonItem is currently associated with, either as a member of the barButtonItems array or as that group’s representativeItem.
impl UIBarButtonItem
UIPopoverPresentationControllerSourceItem.
Methods from Deref<Target = UIBarItem>§
pub fn isEnabled(&self) -> bool
Sourcepub fn setEnabled(&self, enabled: bool)
pub fn setEnabled(&self, enabled: bool)
Setter for isEnabled.
pub fn title(&self) -> Option<Retained<NSString>>
pub fn image(&self) -> Option<Retained<UIImage>>
UIImage only.Sourcepub fn setImage(&self, image: Option<&UIImage>)
Available on crate feature UIImage only.
pub fn setImage(&self, image: Option<&UIImage>)
UIImage only.Setter for image.
pub fn landscapeImagePhone(&self) -> Option<Retained<UIImage>>
UIImage only.Sourcepub fn setLandscapeImagePhone(&self, landscape_image_phone: Option<&UIImage>)
Available on crate feature UIImage only.
pub fn setLandscapeImagePhone(&self, landscape_image_phone: Option<&UIImage>)
UIImage only.Setter for landscapeImagePhone.
pub fn largeContentSizeImage(&self) -> Option<Retained<UIImage>>
UIImage only.Sourcepub fn setLargeContentSizeImage(
&self,
large_content_size_image: Option<&UIImage>,
)
Available on crate feature UIImage only.
pub fn setLargeContentSizeImage( &self, large_content_size_image: Option<&UIImage>, )
UIImage only.Setter for largeContentSizeImage.
pub fn imageInsets(&self) -> UIEdgeInsets
UIGeometry and objc2-core-foundation only.Sourcepub fn setImageInsets(&self, image_insets: UIEdgeInsets)
Available on crate features UIGeometry and objc2-core-foundation only.
pub fn setImageInsets(&self, image_insets: UIEdgeInsets)
UIGeometry and objc2-core-foundation only.Setter for imageInsets.
pub fn landscapeImagePhoneInsets(&self) -> UIEdgeInsets
UIGeometry and objc2-core-foundation only.Sourcepub fn setLandscapeImagePhoneInsets(
&self,
landscape_image_phone_insets: UIEdgeInsets,
)
Available on crate features UIGeometry and objc2-core-foundation only.
pub fn setLandscapeImagePhoneInsets( &self, landscape_image_phone_insets: UIEdgeInsets, )
UIGeometry and objc2-core-foundation only.Setter for landscapeImagePhoneInsets.
pub fn largeContentSizeImageInsets(&self) -> UIEdgeInsets
UIGeometry and objc2-core-foundation only.Sourcepub fn setLargeContentSizeImageInsets(
&self,
large_content_size_image_insets: UIEdgeInsets,
)
Available on crate features UIGeometry and objc2-core-foundation only.
pub fn setLargeContentSizeImageInsets( &self, large_content_size_image_insets: UIEdgeInsets, )
UIGeometry and objc2-core-foundation only.Setter for largeContentSizeImageInsets.
pub fn tag(&self) -> NSInteger
Sourcepub unsafe fn setTitleTextAttributes_forState(
&self,
attributes: Option<&NSDictionary<NSAttributedStringKey, AnyObject>>,
state: UIControlState,
)
Available on crate feature UIControl only.
pub unsafe fn setTitleTextAttributes_forState( &self, attributes: Option<&NSDictionary<NSAttributedStringKey, AnyObject>>, state: UIControlState, )
UIControl only.§Safety
attributes generic should be of the correct type.
pub fn titleTextAttributesForState( &self, state: UIControlState, ) -> Option<Retained<NSDictionary<NSAttributedStringKey, AnyObject>>>
UIControl only.Methods from Deref<Target = NSObject>§
Sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
Sourcepub fn class(&self) -> &'static AnyClass
Available on crate feature UIIndirectScribbleInteraction only.
pub fn class(&self) -> &'static AnyClass
UIIndirectScribbleInteraction only.Dynamically find the class of this object.
§Panics
May panic if the object is invalid (which may be the case for objects
returned from unavailable init/new methods).
§Example
Check that an instance of NSObject has the precise class NSObject.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());Sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load instead.Available on crate feature UIIndirectScribbleInteraction only.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load instead.UIIndirectScribbleInteraction only.Use Ivar::load instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T.
See Ivar::load_ptr for details surrounding this.
Sourcepub fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
Available on crate feature UIIndirectScribbleInteraction only.
pub fn downcast_ref<T>(&self) -> Option<&T>where
T: DowncastTarget,
UIIndirectScribbleInteraction only.Attempt to downcast the object to a class of type T.
This is the reference-variant. Use Retained::downcast if you want
to convert a retained object to another type.
§Mutable classes
Some classes have immutable and mutable variants, such as NSString
and NSMutableString.
When some Objective-C API signature says it gives you an immutable class, it generally expects you to not mutate that, even though it may technically be mutable “under the hood”.
So using this method to convert a NSString to a NSMutableString,
while not unsound, is generally frowned upon unless you created the
string yourself, or the API explicitly documents the string to be
mutable.
See Apple’s documentation on mutability and on
isKindOfClass: for more details.
§Generic classes
Objective-C generics are called “lightweight generics”, and that’s because they aren’t exposed in the runtime. This makes it impossible to safely downcast to generic collections, so this is disallowed by this method.
You can, however, safely downcast to generic collections where all the
type-parameters are AnyObject.
§Panics
This works internally by calling isKindOfClass:. That means that the
object must have the instance method of that name, and an exception
will be thrown (if CoreFoundation is linked) or the process will abort
if that is not the case. In the vast majority of cases, you don’t need
to worry about this, since both root objects NSObject and
NSProxy implement this method.
§Examples
Cast an NSString back and forth from NSObject.
use objc2::rc::Retained;
use objc2_foundation::{NSObject, NSString};
let obj: Retained<NSObject> = NSString::new().into_super();
let string = obj.downcast_ref::<NSString>().unwrap();
// Or with `downcast`, if we do not need the object afterwards
let string = obj.downcast::<NSString>().unwrap();Try (and fail) to cast an NSObject to an NSString.
use objc2_foundation::{NSObject, NSString};
let obj = NSObject::new();
assert!(obj.downcast_ref::<NSString>().is_none());Try to cast to an array of strings.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
// This is invalid and doesn't type check.
let arr = arr.downcast_ref::<NSArray<NSString>>();This fails to compile, since it would require enumerating over the array to ensure that each element is of the desired type, which is a performance pitfall.
Downcast when processing each element instead.
use objc2_foundation::{NSArray, NSObject, NSString};
let arr = NSArray::from_retained_slice(&[NSObject::new()]);
for elem in arr {
if let Some(data) = elem.downcast_ref::<NSString>() {
// handle `data`
}
}Trait Implementations§
Source§impl AsRef<AnyObject> for UIBarButtonItem
impl AsRef<AnyObject> for UIBarButtonItem
Source§impl AsRef<NSObject> for UIBarButtonItem
impl AsRef<NSObject> for UIBarButtonItem
Source§impl AsRef<UIBarButtonItem> for UIBarButtonItem
impl AsRef<UIBarButtonItem> for UIBarButtonItem
Source§impl AsRef<UIBarItem> for UIBarButtonItem
impl AsRef<UIBarItem> for UIBarButtonItem
Source§impl Borrow<AnyObject> for UIBarButtonItem
impl Borrow<AnyObject> for UIBarButtonItem
Source§impl Borrow<NSObject> for UIBarButtonItem
impl Borrow<NSObject> for UIBarButtonItem
Source§impl Borrow<UIBarItem> for UIBarButtonItem
impl Borrow<UIBarItem> for UIBarButtonItem
Source§impl ClassType for UIBarButtonItem
impl ClassType for UIBarButtonItem
Source§const NAME: &'static str = "UIBarButtonItem"
const NAME: &'static str = "UIBarButtonItem"
Source§type ThreadKind = dyn MainThreadOnly
type ThreadKind = dyn MainThreadOnly
Source§impl Debug for UIBarButtonItem
impl Debug for UIBarButtonItem
Source§impl Deref for UIBarButtonItem
impl Deref for UIBarButtonItem
Source§impl Hash for UIBarButtonItem
impl Hash for UIBarButtonItem
Source§impl Message for UIBarButtonItem
impl Message for UIBarButtonItem
Source§impl NSCoding for UIBarButtonItem
impl NSCoding for UIBarButtonItem
Source§impl NSObjectProtocol for UIBarButtonItem
impl NSObjectProtocol for UIBarButtonItem
Source§fn isEqual(&self, other: Option<&AnyObject>) -> bool
fn isEqual(&self, other: Option<&AnyObject>) -> bool
Source§fn hash(&self) -> usize
fn hash(&self) -> usize
Source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
isKindOfClass directly, or cast your objects with AnyObject::downcast_refSource§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
Source§impl PartialEq for UIBarButtonItem
impl PartialEq for UIBarButtonItem
Source§impl RefEncode for UIBarButtonItem
impl RefEncode for UIBarButtonItem
Source§const ENCODING_REF: Encoding = <UIBarItem as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <UIBarItem as ::objc2::RefEncode>::ENCODING_REF
Source§impl UIAppearance for UIBarButtonItem
impl UIAppearance for UIBarButtonItem
Source§fn appearance(mtm: MainThreadMarker) -> Retained<Self>
fn appearance(mtm: MainThreadMarker) -> Retained<Self>
UIAppearance only.Source§unsafe fn appearanceWhenContainedInInstancesOfClasses(
container_types: &NSArray<AnyClass>,
mtm: MainThreadMarker,
) -> Retained<Self>
unsafe fn appearanceWhenContainedInInstancesOfClasses( container_types: &NSArray<AnyClass>, mtm: MainThreadMarker, ) -> Retained<Self>
UIAppearance only.Source§fn appearanceForTraitCollection(
trait: &UITraitCollection,
mtm: MainThreadMarker,
) -> Retained<Self>
fn appearanceForTraitCollection( trait: &UITraitCollection, mtm: MainThreadMarker, ) -> Retained<Self>
UIAppearance and UITraitCollection only.Source§unsafe fn appearanceForTraitCollection_whenContainedInInstancesOfClasses(
trait: &UITraitCollection,
container_types: &NSArray<AnyClass>,
mtm: MainThreadMarker,
) -> Retained<Self>
unsafe fn appearanceForTraitCollection_whenContainedInInstancesOfClasses( trait: &UITraitCollection, container_types: &NSArray<AnyClass>, mtm: MainThreadMarker, ) -> Retained<Self>
UIAppearance and UITraitCollection only.Source§impl UIPopoverPresentationControllerSourceItem for UIBarButtonItem
Available on crate feature UIPopoverPresentationControllerSourceItem only.
impl UIPopoverPresentationControllerSourceItem for UIBarButtonItem
UIPopoverPresentationControllerSourceItem only.Source§impl UISpringLoadedInteractionSupporting for UIBarButtonItem
impl UISpringLoadedInteractionSupporting for UIBarButtonItem
Source§fn isSpringLoaded(&self) -> bool
fn isSpringLoaded(&self) -> bool
UISpringLoadedInteractionSupporting only.Source§fn setSpringLoaded(&self, spring_loaded: bool)
fn setSpringLoaded(&self, spring_loaded: bool)
UISpringLoadedInteractionSupporting only.isSpringLoaded.impl DowncastTarget for UIBarButtonItem
impl Eq for UIBarButtonItem
Auto Trait Implementations§
impl !Freeze for UIBarButtonItem
impl !RefUnwindSafe for UIBarButtonItem
impl !Send for UIBarButtonItem
impl !Sync for UIBarButtonItem
impl !Unpin for UIBarButtonItem
impl !UnwindSafe for UIBarButtonItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<'a, T> MainThreadOnly for T
impl<'a, T> MainThreadOnly for T
Source§fn mtm(&self) -> MainThreadMarker
fn mtm(&self) -> MainThreadMarker
MainThreadMarker from the main-thread-only object. Read more