/*
|
* Copyright (C) 2017 Twitter, Inc.
|
*
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
* you may not use this file except in compliance with the License.
|
* You may obtain a copy of the License at
|
*
|
* http://www.apache.org/licenses/LICENSE-2.0
|
*
|
* Unless required by applicable law or agreed to in writing, software
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* See the License for the specific language governing permissions and
|
* limitations under the License.
|
*
|
*/
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
/**
|
* Possible values for the <i>result</i> parameter of the completionHandler property.
|
*/
|
typedef NS_ENUM(NSInteger, TWTRComposerResult) {
|
/**
|
* The composer is dismissed without sending the Tweet (i.e. the user selects Cancel, or the account is unavailable).
|
*/
|
TWTRComposerResultCancelled,
|
|
/**
|
* The composer is dismissed and the message is being sent in the background, after the user selects Done.
|
*/
|
TWTRComposerResultDone
|
};
|
|
/**
|
* Completion block called when the user finishes composing a Tweet.
|
*/
|
typedef void (^TWTRComposerCompletion)(TWTRComposerResult result);
|
|
/**
|
* The TWTRComposer class presents a view to the user to compose a Tweet.
|
*/
|
@interface TWTRComposer : NSObject
|
|
/**
|
* Sets the initial text for the Tweet composition prior to showing it.
|
*
|
* @param text The text to tweet.
|
*
|
* @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
|
*/
|
- (BOOL)setText:(nullable NSString *)text;
|
|
/**
|
* Sets an image attachment.
|
*
|
* @param image The image to attach.
|
*
|
* @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
|
*/
|
- (BOOL)setImage:(nullable UIImage *)image;
|
|
/**
|
* Adds a URL to the contents of the Tweet message.
|
*
|
* @param url The URL.
|
*
|
* @return This will return NO if the receiver has already been presented (and therefore cannot be changed).
|
*/
|
- (BOOL)setURL:(nullable NSURL *)url;
|
|
/**
|
* Presents the composer, with an optional completion handler from the specified view controller.
|
* @param fromController The controller in which to present the composer from.
|
* @param completion completion The completion handler, which has a single parameter indicating whether the user finished or cancelled the Tweet composition.
|
*/
|
- (void)showFromViewController:(UIViewController *)fromController completion:(nullable TWTRComposerCompletion)completion;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|