mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 17:12:45 +02:00
Rename to partialAttributedTextMessage
This commit is contained in:
@@ -173,7 +173,7 @@ extern NSString *const kMXKRoomDataSourceTimelineErrorErrorKey;
|
||||
/**
|
||||
The current attributed text message partially typed in text input (use nil to reset it).
|
||||
*/
|
||||
@property (nonatomic) NSAttributedString *attributedPartialTextMessage;
|
||||
@property (nonatomic) NSAttributedString *partialAttributedTextMessage;
|
||||
|
||||
/**
|
||||
The current thread id for the data source. If provided, data source displays the specified thread, otherwise the whole room messages.
|
||||
|
||||
@@ -990,14 +990,14 @@ typedef NS_ENUM (NSUInteger, MXKRoomDataSourceError) {
|
||||
_room.partialTextMessage = partialTextMessage;
|
||||
}
|
||||
|
||||
- (NSAttributedString *)attributedPartialTextMessage
|
||||
- (NSAttributedString *)partialAttributedTextMessage
|
||||
{
|
||||
return _room.attributedPartialTextMessage;
|
||||
return _room.partialAttributedTextMessage;
|
||||
}
|
||||
|
||||
- (void)setAttributedPartialTextMessage:(NSAttributedString *)attributedPartialTextMessage
|
||||
- (void)setPartialAttributedTextMessage:(NSAttributedString *)partialAttributedTextMessage
|
||||
{
|
||||
_room.attributedPartialTextMessage = attributedPartialTextMessage;
|
||||
_room.partialAttributedTextMessage = partialAttributedTextMessage;
|
||||
}
|
||||
|
||||
- (void)refreshEventListeners:(NSArray *)liveEventTypesFilterForMessages
|
||||
|
||||
Reference in New Issue
Block a user