jijo

Results 5 comments of jijo

Hi friends, getting same issue as you mentioned. Issue when you attempt to drag the last cell all the way to the top of the list. We are only able...

FYI: I replaced my TableView with CollectionView to get a decent reordering.. :)

1. In JTCalendarDelegate.h file add ` - (NSUInteger)numberOfWeeksRowInMonth:(NSDate *)currentDate;` 2. In JTCalendarDelegateManager.h add `- (NSUInteger)numberOfWeeksRow:(NSDate *)currentDate;` 3. In JTCalendarDelegateManager.m add ``` - (NSUInteger)numberOfWeeksRow:(NSDate *)currentDate { if(_manager.delegate && [_manager.delegate respondsToSelector:@selector(numberOfWeeksRowInMonth:)]){ return...

The issue is, viewDidLayoutSubviews() is calling when ever sets the imageview's frame. And inside viewDidLayoutSubviews(), its again setting the initial frame.

yes. I think the changes are: 1. ImageCropperModelImplementation class ``` init(with configuration: ImageCropperConfiguration) { self.configuration = configuration self.imageFrame = imageInitialFrame//+20191106 } ``` 2. class ImageCropperPresenterImplementation var isSubsequentLayoutCall = false ```...