Ahmed Sulaiman
Ahmed Sulaiman
### Description `+[CLURecordIndicatorViewManager currentViewController]` is a universal method which returns current top/active `UIViewController` instance. Based on this method Clue can show Record indicator view, record only current view controller's view...
### Description There is a TODO comment in `-clue_attributedTextPropertyDictionaryForAttributedString:` method in `UIView(CLUViewRecordableAdditions)` to parse more useful properties from `NSAttributedString`. ```objective-c - (NSDictionary *)clue_attributedTextPropertyDictionaryForAttributedString:(NSAttributedString *)attributedText { NSMutableDictionary *attributedTextDictionary = [[NSMutableDictionary alloc]...
### Description We need to fail some utils method in `UIView (CLUViewRecordableAdditions)` if input arguments are invalid. For example: ```objective-c - (NSDictionary *)clue_fontPropertyDictionaryForFont:(UIFont *)font { NSMutableDictionary *fontDictionary = [[NSMutableDictionary alloc]...
### Description There is a #warning in `CLUUserInteractionModule` class in `startRecording` method ```objective-c - (void)startRecording { if (!self.isRecording) { [super startRecording]; [_gestureRecognizer setObserverDelegate:self]; #warning If some window will be destroyed...