NewsBlur/clients/ios/Other Sources/Overshare Kit/OSKMicrobloggingActivity.h

24 lines
532 B
C
Raw Normal View History

2014-01-06 17:55:14 -08:00
//
// OSKMicrobloggingActivity.h
// Overshare
//
//
// Copyright (c) 2013 Overshare Kit. All rights reserved.
//
@import Foundation;
typedef NS_ENUM(NSInteger, OSKMicroblogSyntaxHighlightingStyle) {
OSKMicroblogSyntaxHighlightingStyle_Twitter,
OSKMicroblogSyntaxHighlightingStyle_LinksOnly,
};
@protocol OSKMicrobloggingActivity <NSObject>
- (NSInteger)maximumCharacterCount;
- (NSInteger)maximumImageCount;
- (OSKMicroblogSyntaxHighlightingStyle)syntaxHighlightingStyle;
- (NSInteger)maximumUsernameLength;
@end