PTAnnotationReplyInputViewController


@interface PTAnnotationReplyInputViewController
    : UIViewController <PTOverridable>

A view controller that receives and manages user text input.

  • Initializes a newly created PTAnnotationReplyInputViewController instance.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    init()

    Return Value

    an initialized PTAnnotationReplyInputViewController instance

  • Initializes a newly created PTAnnotationReplyInputViewController instance with the specified coder.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithCoder:(nonnull NSCoder *)coder;

    Swift

    init(coder: NSCoder)

    Parameters

    coder

    The coder used to initialize the

  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithNibName:(nullable NSString *)nibName
                             bundle:(nullable NSBundle *)bundle NS_UNAVAILABLE;
  • The view that receives and submits user input.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) PTAnnotationReplyInputView *_Nonnull replyInputView;

    Swift

    var replyInputView: PTAnnotationReplyInputView { get }
  • The object that is notified of events originating from this view controller.

    Declaration

    Objective-C

    @property (nonatomic, weak, nullable) id<PTAnnotationReplyInputViewControllerDelegate> delegate;

    Swift

    weak var delegate: (any PTAnnotationReplyInputViewControllerDelegate)? { get set }