CreateAddTitleViewControllerDelegate

@protocol CreateAddTitleViewControllerDelegate <NSObject>

/**
 This delegate occurs when the user has finished editing the title.
 @param title - the text set by the user to be used as the title
 **/
- (void)createAddTitleViewControllerFinishedWithTitle:(NSString *)title;

@end

Undocumented

  • This delegate occurs when the user has finished editing the title.

    Declaration

    Objective-C

    - (void)createAddTitleViewControllerFinishedWithTitle:(NSString *)title;

    Swift

    func createAddTitleViewControllerFinished(withTitle title: String!)

    Parameters

    title

    - the text set by the user to be used as the title *