use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-core-foundation")]
use objc2_core_foundation::*;
use objc2_foundation::*;
#[cfg(feature = "objc2-quartz-core")]
#[cfg(not(target_os = "watchos"))]
use objc2_quartz_core::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellStyle(pub NSInteger);
impl UITableViewCellStyle {
#[doc(alias = "UITableViewCellStyleDefault")]
pub const Default: Self = Self(0);
#[doc(alias = "UITableViewCellStyleValue1")]
pub const Value1: Self = Self(1);
#[doc(alias = "UITableViewCellStyleValue2")]
pub const Value2: Self = Self(2);
#[doc(alias = "UITableViewCellStyleSubtitle")]
pub const Subtitle: Self = Self(3);
}
unsafe impl Encode for UITableViewCellStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellSeparatorStyle(pub NSInteger);
impl UITableViewCellSeparatorStyle {
#[doc(alias = "UITableViewCellSeparatorStyleNone")]
pub const None: Self = Self(0);
#[doc(alias = "UITableViewCellSeparatorStyleSingleLine")]
pub const SingleLine: Self = Self(1);
#[doc(alias = "UITableViewCellSeparatorStyleSingleLineEtched")]
#[deprecated = "Use UITableViewCellSeparatorStyleSingleLine for a single line separator."]
pub const SingleLineEtched: Self = Self(2);
}
unsafe impl Encode for UITableViewCellSeparatorStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellSeparatorStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellSelectionStyle(pub NSInteger);
impl UITableViewCellSelectionStyle {
#[doc(alias = "UITableViewCellSelectionStyleNone")]
pub const None: Self = Self(0);
#[doc(alias = "UITableViewCellSelectionStyleBlue")]
pub const Blue: Self = Self(1);
#[doc(alias = "UITableViewCellSelectionStyleGray")]
pub const Gray: Self = Self(2);
#[doc(alias = "UITableViewCellSelectionStyleDefault")]
pub const Default: Self = Self(3);
}
unsafe impl Encode for UITableViewCellSelectionStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellSelectionStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellFocusStyle(pub NSInteger);
impl UITableViewCellFocusStyle {
#[doc(alias = "UITableViewCellFocusStyleDefault")]
pub const Default: Self = Self(0);
#[doc(alias = "UITableViewCellFocusStyleCustom")]
pub const Custom: Self = Self(1);
}
unsafe impl Encode for UITableViewCellFocusStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellFocusStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellEditingStyle(pub NSInteger);
impl UITableViewCellEditingStyle {
#[doc(alias = "UITableViewCellEditingStyleNone")]
pub const None: Self = Self(0);
#[doc(alias = "UITableViewCellEditingStyleDelete")]
pub const Delete: Self = Self(1);
#[doc(alias = "UITableViewCellEditingStyleInsert")]
pub const Insert: Self = Self(2);
}
unsafe impl Encode for UITableViewCellEditingStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellEditingStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellAccessoryType(pub NSInteger);
impl UITableViewCellAccessoryType {
#[doc(alias = "UITableViewCellAccessoryNone")]
pub const None: Self = Self(0);
#[doc(alias = "UITableViewCellAccessoryDisclosureIndicator")]
pub const DisclosureIndicator: Self = Self(1);
#[doc(alias = "UITableViewCellAccessoryDetailDisclosureButton")]
pub const DetailDisclosureButton: Self = Self(2);
#[doc(alias = "UITableViewCellAccessoryCheckmark")]
pub const Checkmark: Self = Self(3);
#[doc(alias = "UITableViewCellAccessoryDetailButton")]
pub const DetailButton: Self = Self(4);
}
unsafe impl Encode for UITableViewCellAccessoryType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellAccessoryType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellStateMask(pub NSUInteger);
bitflags::bitflags! {
impl UITableViewCellStateMask: NSUInteger {
#[doc(alias = "UITableViewCellStateDefaultMask")]
const DefaultMask = 0;
#[doc(alias = "UITableViewCellStateShowingEditControlMask")]
const ShowingEditControlMask = 1<<0;
#[doc(alias = "UITableViewCellStateShowingDeleteConfirmationMask")]
const ShowingDeleteConfirmationMask = 1<<1;
}
}
unsafe impl Encode for UITableViewCellStateMask {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellStateMask {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITableViewCellDragState(pub NSInteger);
impl UITableViewCellDragState {
#[doc(alias = "UITableViewCellDragStateNone")]
pub const None: Self = Self(0);
#[doc(alias = "UITableViewCellDragStateLifting")]
pub const Lifting: Self = Self(1);
#[doc(alias = "UITableViewCellDragStateDragging")]
pub const Dragging: Self = Self(2);
}
unsafe impl Encode for UITableViewCellDragState {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UITableViewCellDragState {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[cfg(all(
feature = "UICellConfigurationState",
feature = "UIResponder",
feature = "UIView",
feature = "UIViewConfigurationState",
feature = "block2"
))]
pub type UITableViewCellConfigurationUpdateHandler =
*mut block2::DynBlock<dyn Fn(NonNull<UITableViewCell>, NonNull<UICellConfigurationState>)>;
extern_class!(
#[unsafe(super(UIView, UIResponder, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
pub struct UITableViewCell;
);
#[cfg(all(
feature = "UIResponder",
feature = "UIView",
feature = "objc2-quartz-core"
))]
#[cfg(not(target_os = "watchos"))]
extern_conformance!(
unsafe impl CALayerDelegate for UITableViewCell {}
);
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl NSCoding for UITableViewCell {}
);
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl NSObjectProtocol for UITableViewCell {}
);
#[cfg(all(feature = "UIAppearance", feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIAppearance for UITableViewCell {}
);
#[cfg(all(feature = "UIAppearance", feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIAppearanceContainer for UITableViewCell {}
);
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UICoordinateSpace for UITableViewCell {}
);
#[cfg(all(
feature = "UIDynamicBehavior",
feature = "UIResponder",
feature = "UIView"
))]
extern_conformance!(
unsafe impl UIDynamicItem for UITableViewCell {}
);
#[cfg(all(feature = "UIFocus", feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIFocusEnvironment for UITableViewCell {}
);
#[cfg(all(feature = "UIFocus", feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIFocusItem for UITableViewCell {}
);
#[cfg(all(feature = "UIFocus", feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIFocusItemContainer for UITableViewCell {}
);
#[cfg(all(
feature = "UIGestureRecognizer",
feature = "UIResponder",
feature = "UIView"
))]
extern_conformance!(
unsafe impl UIGestureRecognizerDelegate for UITableViewCell {}
);
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
extern_conformance!(
unsafe impl UIResponderStandardEditActions for UITableViewCell {}
);
#[cfg(all(
feature = "UIResponder",
feature = "UITraitCollection",
feature = "UIView"
))]
extern_conformance!(
unsafe impl UITraitEnvironment for UITableViewCell {}
);
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
impl UITableViewCell {
extern_methods!(
#[unsafe(method(initWithStyle:reuseIdentifier:))]
#[unsafe(method_family = init)]
pub fn initWithStyle_reuseIdentifier(
this: Allocated<Self>,
style: UITableViewCellStyle,
reuse_identifier: Option<&NSString>,
) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>;
#[cfg(all(
feature = "UICellConfigurationState",
feature = "UIViewConfigurationState"
))]
#[unsafe(method(configurationState))]
#[unsafe(method_family = none)]
pub fn configurationState(&self) -> Retained<UICellConfigurationState>;
#[unsafe(method(setNeedsUpdateConfiguration))]
#[unsafe(method_family = none)]
pub fn setNeedsUpdateConfiguration(&self);
#[cfg(all(
feature = "UICellConfigurationState",
feature = "UIViewConfigurationState"
))]
#[unsafe(method(updateConfigurationUsingState:))]
#[unsafe(method_family = none)]
pub fn updateConfigurationUsingState(&self, state: &UICellConfigurationState);
#[cfg(all(
feature = "UICellConfigurationState",
feature = "UIViewConfigurationState",
feature = "block2"
))]
#[unsafe(method(configurationUpdateHandler))]
#[unsafe(method_family = none)]
pub unsafe fn configurationUpdateHandler(
&self,
) -> UITableViewCellConfigurationUpdateHandler;
#[cfg(all(
feature = "UICellConfigurationState",
feature = "UIViewConfigurationState",
feature = "block2"
))]
#[unsafe(method(setConfigurationUpdateHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn setConfigurationUpdateHandler(
&self,
configuration_update_handler: UITableViewCellConfigurationUpdateHandler,
);
#[cfg(feature = "UIListContentConfiguration")]
#[unsafe(method(defaultContentConfiguration))]
#[unsafe(method_family = none)]
pub fn defaultContentConfiguration(&self) -> Retained<UIListContentConfiguration>;
#[cfg(feature = "UIContentConfiguration")]
#[unsafe(method(contentConfiguration))]
#[unsafe(method_family = none)]
pub fn contentConfiguration(
&self,
) -> Option<Retained<ProtocolObject<dyn UIContentConfiguration>>>;
#[cfg(feature = "UIContentConfiguration")]
#[unsafe(method(setContentConfiguration:))]
#[unsafe(method_family = none)]
pub fn setContentConfiguration(
&self,
content_configuration: Option<&ProtocolObject<dyn UIContentConfiguration>>,
);
#[unsafe(method(automaticallyUpdatesContentConfiguration))]
#[unsafe(method_family = none)]
pub fn automaticallyUpdatesContentConfiguration(&self) -> bool;
#[unsafe(method(setAutomaticallyUpdatesContentConfiguration:))]
#[unsafe(method_family = none)]
pub fn setAutomaticallyUpdatesContentConfiguration(
&self,
automatically_updates_content_configuration: bool,
);
#[unsafe(method(contentView))]
#[unsafe(method_family = none)]
pub fn contentView(&self) -> Retained<UIView>;
#[cfg(feature = "UIImageView")]
#[deprecated = "Use UIListContentConfiguration instead, this property will be deprecated in a future release."]
#[unsafe(method(imageView))]
#[unsafe(method_family = none)]
pub fn imageView(&self) -> Option<Retained<UIImageView>>;
#[cfg(feature = "UILabel")]
#[deprecated = "Use UIListContentConfiguration instead, this property will be deprecated in a future release."]
#[unsafe(method(textLabel))]
#[unsafe(method_family = none)]
pub fn textLabel(&self) -> Option<Retained<UILabel>>;
#[cfg(feature = "UILabel")]
#[deprecated = "Use UIListContentConfiguration instead, this property will be deprecated in a future release."]
#[unsafe(method(detailTextLabel))]
#[unsafe(method_family = none)]
pub fn detailTextLabel(&self) -> Option<Retained<UILabel>>;
#[cfg(feature = "UIBackgroundConfiguration")]
#[unsafe(method(defaultBackgroundConfiguration))]
#[unsafe(method_family = none)]
pub fn defaultBackgroundConfiguration(&self) -> Retained<UIBackgroundConfiguration>;
#[cfg(feature = "UIBackgroundConfiguration")]
#[unsafe(method(backgroundConfiguration))]
#[unsafe(method_family = none)]
pub fn backgroundConfiguration(&self) -> Option<Retained<UIBackgroundConfiguration>>;
#[cfg(feature = "UIBackgroundConfiguration")]
#[unsafe(method(setBackgroundConfiguration:))]
#[unsafe(method_family = none)]
pub fn setBackgroundConfiguration(
&self,
background_configuration: Option<&UIBackgroundConfiguration>,
);
#[unsafe(method(automaticallyUpdatesBackgroundConfiguration))]
#[unsafe(method_family = none)]
pub fn automaticallyUpdatesBackgroundConfiguration(&self) -> bool;
#[unsafe(method(setAutomaticallyUpdatesBackgroundConfiguration:))]
#[unsafe(method_family = none)]
pub fn setAutomaticallyUpdatesBackgroundConfiguration(
&self,
automatically_updates_background_configuration: bool,
);
#[unsafe(method(backgroundView))]
#[unsafe(method_family = none)]
pub fn backgroundView(&self) -> Option<Retained<UIView>>;
#[unsafe(method(setBackgroundView:))]
#[unsafe(method_family = none)]
pub fn setBackgroundView(&self, background_view: Option<&UIView>);
#[unsafe(method(selectedBackgroundView))]
#[unsafe(method_family = none)]
pub fn selectedBackgroundView(&self) -> Option<Retained<UIView>>;
#[unsafe(method(setSelectedBackgroundView:))]
#[unsafe(method_family = none)]
pub fn setSelectedBackgroundView(&self, selected_background_view: Option<&UIView>);
#[unsafe(method(multipleSelectionBackgroundView))]
#[unsafe(method_family = none)]
pub fn multipleSelectionBackgroundView(&self) -> Option<Retained<UIView>>;
#[unsafe(method(setMultipleSelectionBackgroundView:))]
#[unsafe(method_family = none)]
pub fn setMultipleSelectionBackgroundView(
&self,
multiple_selection_background_view: Option<&UIView>,
);
#[unsafe(method(reuseIdentifier))]
#[unsafe(method_family = none)]
pub fn reuseIdentifier(&self) -> Option<Retained<NSString>>;
#[unsafe(method(prepareForReuse))]
#[unsafe(method_family = none)]
pub fn prepareForReuse(&self);
#[unsafe(method(selectionStyle))]
#[unsafe(method_family = none)]
pub fn selectionStyle(&self) -> UITableViewCellSelectionStyle;
#[unsafe(method(setSelectionStyle:))]
#[unsafe(method_family = none)]
pub fn setSelectionStyle(&self, selection_style: UITableViewCellSelectionStyle);
#[unsafe(method(isSelected))]
#[unsafe(method_family = none)]
pub fn isSelected(&self) -> bool;
#[unsafe(method(setSelected:))]
#[unsafe(method_family = none)]
pub fn setSelected(&self, selected: bool);
#[unsafe(method(isHighlighted))]
#[unsafe(method_family = none)]
pub fn isHighlighted(&self) -> bool;
#[unsafe(method(setHighlighted:))]
#[unsafe(method_family = none)]
pub fn setHighlighted(&self, highlighted: bool);
#[unsafe(method(setSelected:animated:))]
#[unsafe(method_family = none)]
pub fn setSelected_animated(&self, selected: bool, animated: bool);
#[unsafe(method(setHighlighted:animated:))]
#[unsafe(method_family = none)]
pub fn setHighlighted_animated(&self, highlighted: bool, animated: bool);
#[unsafe(method(editingStyle))]
#[unsafe(method_family = none)]
pub fn editingStyle(&self) -> UITableViewCellEditingStyle;
#[unsafe(method(showsReorderControl))]
#[unsafe(method_family = none)]
pub fn showsReorderControl(&self) -> bool;
#[unsafe(method(setShowsReorderControl:))]
#[unsafe(method_family = none)]
pub fn setShowsReorderControl(&self, shows_reorder_control: bool);
#[unsafe(method(shouldIndentWhileEditing))]
#[unsafe(method_family = none)]
pub fn shouldIndentWhileEditing(&self) -> bool;
#[unsafe(method(setShouldIndentWhileEditing:))]
#[unsafe(method_family = none)]
pub fn setShouldIndentWhileEditing(&self, should_indent_while_editing: bool);
#[unsafe(method(accessoryType))]
#[unsafe(method_family = none)]
pub fn accessoryType(&self) -> UITableViewCellAccessoryType;
#[unsafe(method(setAccessoryType:))]
#[unsafe(method_family = none)]
pub fn setAccessoryType(&self, accessory_type: UITableViewCellAccessoryType);
#[unsafe(method(accessoryView))]
#[unsafe(method_family = none)]
pub fn accessoryView(&self) -> Option<Retained<UIView>>;
#[unsafe(method(setAccessoryView:))]
#[unsafe(method_family = none)]
pub fn setAccessoryView(&self, accessory_view: Option<&UIView>);
#[unsafe(method(editingAccessoryType))]
#[unsafe(method_family = none)]
pub fn editingAccessoryType(&self) -> UITableViewCellAccessoryType;
#[unsafe(method(setEditingAccessoryType:))]
#[unsafe(method_family = none)]
pub fn setEditingAccessoryType(&self, editing_accessory_type: UITableViewCellAccessoryType);
#[unsafe(method(editingAccessoryView))]
#[unsafe(method_family = none)]
pub fn editingAccessoryView(&self) -> Option<Retained<UIView>>;
#[unsafe(method(setEditingAccessoryView:))]
#[unsafe(method_family = none)]
pub fn setEditingAccessoryView(&self, editing_accessory_view: Option<&UIView>);
#[unsafe(method(indentationLevel))]
#[unsafe(method_family = none)]
pub fn indentationLevel(&self) -> NSInteger;
#[unsafe(method(setIndentationLevel:))]
#[unsafe(method_family = none)]
pub fn setIndentationLevel(&self, indentation_level: NSInteger);
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(indentationWidth))]
#[unsafe(method_family = none)]
pub fn indentationWidth(&self) -> CGFloat;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(setIndentationWidth:))]
#[unsafe(method_family = none)]
pub fn setIndentationWidth(&self, indentation_width: CGFloat);
#[cfg(all(feature = "UIGeometry", feature = "objc2-core-foundation"))]
#[unsafe(method(separatorInset))]
#[unsafe(method_family = none)]
pub fn separatorInset(&self) -> UIEdgeInsets;
#[cfg(all(feature = "UIGeometry", feature = "objc2-core-foundation"))]
#[unsafe(method(setSeparatorInset:))]
#[unsafe(method_family = none)]
pub fn setSeparatorInset(&self, separator_inset: UIEdgeInsets);
#[unsafe(method(isEditing))]
#[unsafe(method_family = none)]
pub fn isEditing(&self) -> bool;
#[unsafe(method(setEditing:))]
#[unsafe(method_family = none)]
pub fn setEditing(&self, editing: bool);
#[unsafe(method(setEditing:animated:))]
#[unsafe(method_family = none)]
pub fn setEditing_animated(&self, editing: bool, animated: bool);
#[unsafe(method(showingDeleteConfirmation))]
#[unsafe(method_family = none)]
pub fn showingDeleteConfirmation(&self) -> bool;
#[unsafe(method(focusStyle))]
#[unsafe(method_family = none)]
pub fn focusStyle(&self) -> UITableViewCellFocusStyle;
#[unsafe(method(setFocusStyle:))]
#[unsafe(method_family = none)]
pub fn setFocusStyle(&self, focus_style: UITableViewCellFocusStyle);
#[unsafe(method(willTransitionToState:))]
#[unsafe(method_family = none)]
pub fn willTransitionToState(&self, state: UITableViewCellStateMask);
#[unsafe(method(didTransitionToState:))]
#[unsafe(method_family = none)]
pub fn didTransitionToState(&self, state: UITableViewCellStateMask);
#[unsafe(method(dragStateDidChange:))]
#[unsafe(method_family = none)]
pub fn dragStateDidChange(&self, drag_state: UITableViewCellDragState);
#[unsafe(method(userInteractionEnabledWhileDragging))]
#[unsafe(method_family = none)]
pub fn userInteractionEnabledWhileDragging(&self) -> bool;
#[unsafe(method(setUserInteractionEnabledWhileDragging:))]
#[unsafe(method_family = none)]
pub fn setUserInteractionEnabledWhileDragging(
&self,
user_interaction_enabled_while_dragging: bool,
);
);
}
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
impl UITableViewCell {
extern_methods!(
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(initWithFrame:))]
#[unsafe(method_family = init)]
pub fn initWithFrame(this: Allocated<Self>, frame: CGRect) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
impl UITableViewCell {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}
#[cfg(all(feature = "UIResponder", feature = "UIView"))]
impl UITableViewCell {
extern_methods!(
#[cfg(feature = "objc2-core-foundation")]
#[deprecated]
#[unsafe(method(initWithFrame:reuseIdentifier:))]
#[unsafe(method_family = init)]
pub fn initWithFrame_reuseIdentifier(
this: Allocated<Self>,
frame: CGRect,
reuse_identifier: Option<&NSString>,
) -> Retained<Self>;
#[deprecated]
#[unsafe(method(text))]
#[unsafe(method_family = none)]
pub fn text(&self) -> Option<Retained<NSString>>;
#[deprecated]
#[unsafe(method(setText:))]
#[unsafe(method_family = none)]
pub fn setText(&self, text: Option<&NSString>);
#[cfg(feature = "UIFont")]
#[deprecated]
#[unsafe(method(font))]
#[unsafe(method_family = none)]
pub fn font(&self) -> Option<Retained<UIFont>>;
#[cfg(feature = "UIFont")]
#[deprecated]
#[unsafe(method(setFont:))]
#[unsafe(method_family = none)]
pub fn setFont(&self, font: Option<&UIFont>);
#[cfg(feature = "NSText")]
#[deprecated]
#[unsafe(method(textAlignment))]
#[unsafe(method_family = none)]
pub fn textAlignment(&self) -> NSTextAlignment;
#[cfg(feature = "NSText")]
#[deprecated]
#[unsafe(method(setTextAlignment:))]
#[unsafe(method_family = none)]
pub fn setTextAlignment(&self, text_alignment: NSTextAlignment);
#[cfg(feature = "NSParagraphStyle")]
#[deprecated]
#[unsafe(method(lineBreakMode))]
#[unsafe(method_family = none)]
pub fn lineBreakMode(&self) -> NSLineBreakMode;
#[cfg(feature = "NSParagraphStyle")]
#[deprecated]
#[unsafe(method(setLineBreakMode:))]
#[unsafe(method_family = none)]
pub fn setLineBreakMode(&self, line_break_mode: NSLineBreakMode);
#[cfg(feature = "UIColor")]
#[deprecated]
#[unsafe(method(textColor))]
#[unsafe(method_family = none)]
pub fn textColor(&self) -> Option<Retained<UIColor>>;
#[cfg(feature = "UIColor")]
#[deprecated]
#[unsafe(method(setTextColor:))]
#[unsafe(method_family = none)]
pub fn setTextColor(&self, text_color: Option<&UIColor>);
#[cfg(feature = "UIColor")]
#[deprecated]
#[unsafe(method(selectedTextColor))]
#[unsafe(method_family = none)]
pub fn selectedTextColor(&self) -> Option<Retained<UIColor>>;
#[cfg(feature = "UIColor")]
#[deprecated]
#[unsafe(method(setSelectedTextColor:))]
#[unsafe(method_family = none)]
pub fn setSelectedTextColor(&self, selected_text_color: Option<&UIColor>);
#[cfg(feature = "UIImage")]
#[deprecated]
#[unsafe(method(image))]
#[unsafe(method_family = none)]
pub fn image(&self) -> Option<Retained<UIImage>>;
#[cfg(feature = "UIImage")]
#[deprecated]
#[unsafe(method(setImage:))]
#[unsafe(method_family = none)]
pub fn setImage(&self, image: Option<&UIImage>);
#[cfg(feature = "UIImage")]
#[deprecated]
#[unsafe(method(selectedImage))]
#[unsafe(method_family = none)]
pub fn selectedImage(&self) -> Option<Retained<UIImage>>;
#[cfg(feature = "UIImage")]
#[deprecated]
#[unsafe(method(setSelectedImage:))]
#[unsafe(method_family = none)]
pub fn setSelectedImage(&self, selected_image: Option<&UIImage>);
#[deprecated]
#[unsafe(method(hidesAccessoryWhenEditing))]
#[unsafe(method_family = none)]
pub fn hidesAccessoryWhenEditing(&self) -> bool;
#[deprecated]
#[unsafe(method(setHidesAccessoryWhenEditing:))]
#[unsafe(method_family = none)]
pub fn setHidesAccessoryWhenEditing(&self, hides_accessory_when_editing: bool);
#[deprecated]
#[unsafe(method(target))]
#[unsafe(method_family = none)]
pub unsafe fn target(&self) -> Option<Retained<AnyObject>>;
#[deprecated]
#[unsafe(method(setTarget:))]
#[unsafe(method_family = none)]
pub unsafe fn setTarget(&self, target: Option<&AnyObject>);
#[deprecated]
#[unsafe(method(editAction))]
#[unsafe(method_family = none)]
pub fn editAction(&self) -> Option<Sel>;
#[deprecated]
#[unsafe(method(setEditAction:))]
#[unsafe(method_family = none)]
pub unsafe fn setEditAction(&self, edit_action: Option<Sel>);
#[deprecated]
#[unsafe(method(accessoryAction))]
#[unsafe(method_family = none)]
pub fn accessoryAction(&self) -> Option<Sel>;
#[deprecated]
#[unsafe(method(setAccessoryAction:))]
#[unsafe(method_family = none)]
pub unsafe fn setAccessoryAction(&self, accessory_action: Option<Sel>);
);
}