mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
24 lines
532 B
C
24 lines
532 B
C
![]() |
//
|
||
|
// 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
|