PTNoteEditController
@interface PTNoteEditController : UIViewController <PTOverridable>A view controller that displays and allows editing of an annotation’s popup note.
- 
                  
                  Initializes a newly created PTNoteEditControllerinstance.DeclarationObjective-C - (nonnull instancetype)initWithDelegate: (nonnull id<PTNoteEditControllerDelegate>)delegate annotType:(PTExtendedAnnotType)annotType;Swift init(delegate: any PTNoteEditControllerDelegate, annotType: PTExtendedAnnotType)
- 
                  
                  The delegate of the note edit controller. DeclarationObjective-C @property (nonatomic, weak, nullable) id<PTNoteEditControllerDelegate> delegate;Swift weak var delegate: (any PTNoteEditControllerDelegate)? { get set }
- 
                  
                  The UITextViewthat displays the contents of the note.DeclarationObjective-C @property (nonatomic, strong, readonly) UITextView *_Nonnull textView;Swift var textView: UITextView { get }
- 
                  
                  The contents of the note. DeclarationObjective-C @property (nonatomic, copy) NSString *_Nonnull noteString;Swift var noteString: String { get set }
- 
                  
                  Whether the UIBarButtonItem to change the style of the note should be hidden. The default value is NO.DeclarationObjective-C @property (nonatomic) BOOL styleButtonHidden;Swift var styleButtonHidden: Bool { get set }
- 
                  
                  Whether the note is readonly and editing is disabled. The default value is NO.DeclarationObjective-C @property (nonatomic, getter=isReadonly) BOOL readonly;Swift var isReadonly: Bool { get set }
- 
                  
                  Whether this view controller’s contents should be tinted to reflect the annotation’s primary color. The default value of this property is YES.DeclarationObjective-C @property (nonatomic, assign, unsafe_unretained, readwrite, getter=isAnnotationTintColorEnabled) BOOL annotationTintColorEnabled;Swift var isAnnotationTintColorEnabled: Bool { get set }
- 
                  
                  The tinted background color of this view controller. The default value of this property is nil.DeclarationObjective-C @property (nonatomic, strong, nullable) UIColor *backgroundTintColor;Swift var backgroundTintColor: UIColor? { get set }
- 
                  
                  The tinted button item color of this view controller. The default value of this property is nil.DeclarationObjective-C @property (nonatomic, strong, nullable) UIColor *buttonItemTintColor;Swift var buttonItemTintColor: UIColor? { get set }
- 
                  
                  This method is called when cancel button is pressed. Override point. DeclarationObjective-C - (void)cancelButtonPressed;Swift func cancelButtonPressed()
- 
                  
                  This method is called when the delete button is pressed. Override point. DeclarationObjective-C - (void)deleteButtonPressed;Swift func deleteButtonPressed()
- 
                  
                  This method is called when the save button is pressed. Override point. DeclarationObjective-C - (void)saveButtonPressed;Swift func saveButtonPressed()
- 
                  
                  This method is called when the style button is pressed. Override point. DeclarationObjective-C - (void)styleButtonPressed;Swift func styleButtonPressed()
- 
                  
                  This method is called when the done button is pressed. Override point. DeclarationObjective-C - (void)doneButtonPressed;Swift func doneButtonPressed()
- 
                  
                  The annotation type for which the note edit controller is being shown. DeclarationObjective-C @property (nonatomic) PTExtendedAnnotType annotType;Swift var annotType: PTExtendedAnnotType { get set }
- 
                  
                  The “Style” button item shown in the toolbar to modify the annotation’s style. DeclarationObjective-C @property (nonatomic, strong, readonly) UIBarButtonItem *_Nonnull styleButtonItem;Swift var styleButtonItem: UIBarButtonItem { get }
- 
                  
                  The “Delete” button item shown in the toolbar to delete the annotation’s style. Only shown for text (sticky note) annotations. DeclarationObjective-C @property (nonatomic, strong, readonly) UIBarButtonItem *_Nonnull deleteButtonItem;Swift var deleteButtonItem: UIBarButtonItem { get }
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)initWithNibName:(nullable NSString *)nibName bundle:(nullable NSBundle *)bundle NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)init NS_UNAVAILABLE;
 PTNoteEditController Class Reference
        PTNoteEditController Class Reference