Mark Krenek

Results 15 comments of Mark Krenek

I have the same stuttering even without subclassing MWCaptionView. If I don't provide any captions, there is no stuttering.

For me, removing the call to layoutVisiblePages in viewWillLayoutSubviews resolved my issue. I can't explain exactly why, but here's what I'm seeing: During a scroll, layout happens once via a...

Another solution that seems to work is to NOT change the contentOffset at the end of layoutVisiblePages if the user is scrolling the view. Change: ``` _pagingScrollView.contentOffset = [self contentOffsetForPageAtIndex:indexPriorToLayout];...

The demo code always creates a MKPinAnnotationView, even for custom pins. It then tries to set the image property of the MKPinAnnotationView. This used to work for older OS versions,...

At line 445 of REMarkerClusterer.m, mapView:regionDidChangeAnimated isn't checking the length of the selectedAnnotations array before accessing it. Use this code when calling deselectAnnotation:annotation: ``` id annotation = self.mapView.selectedAnnotations.firstObject; if (annotation...

A beginUpdates/endUpdates style API would be great. But here's how I solved this for my NSFetchedResultsController case using the current code base: Instead of performing add/removeAnnotations for each update, just...

switchRectOrientation should only to be called when in landscape mode. Look at the other spot in -fullScreenRect where switchRectOrientation is used and you'll see the proper usage.

I modified the code to support any width screen and device rotation. There were quite a few changes but not really difficult. - In DSLCalendarView, the autoresizingMask for monthContainerView and...

You can grab my changes here - https://www.dropbox.com/s/6sokynlswgf1g75/DSLCalendarView-VariableWidth.zip?dl=0 I don't have the bandwidth right now to clean it up to be suitable for a pull request.

Sorry about that. Grabbed the wrong folder. Try it again. Link has been updated.