mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Standardize Property Declaration Style in Core Classes (#870)
* Audit property attributes for core classes * Update style guide * Go crazy * Update changelog
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
// Prevent UITextView from updating contentOffset while deallocating: https://github.com/TextureGroup/Texture/issues/860
|
||||
BOOL _deallocating;
|
||||
}
|
||||
@property (atomic, assign) CGRect threadSafeBounds;
|
||||
@property CGRect threadSafeBounds;
|
||||
@end
|
||||
|
||||
@implementation ASTextKitComponentsTextView
|
||||
@@ -73,9 +73,9 @@
|
||||
@interface ASTextKitComponents ()
|
||||
|
||||
// read-write redeclarations
|
||||
@property (nonatomic, strong, readwrite) NSTextStorage *textStorage;
|
||||
@property (nonatomic, strong, readwrite) NSTextContainer *textContainer;
|
||||
@property (nonatomic, strong, readwrite) NSLayoutManager *layoutManager;
|
||||
@property (nonatomic) NSTextStorage *textStorage;
|
||||
@property (nonatomic) NSTextContainer *textContainer;
|
||||
@property (nonatomic) NSLayoutManager *layoutManager;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user