Jesse Collis
Jesse Collis
Hey Ormast, How are you setting your existing values on your form field in `viewDidLoad` ? You need to make sure you set the value of the field correctly, not...
It looks like `EZFormRadioField` combined with it's superclass `EZFormTextField` are missing a few edge cases around unwiring the input view if it's a UILabel. ``` - (void)unwireInputView { if ([self.userView.inputView...
Hi @NandoSalvaterra, this library doesn't have any connection to GPS/physical location. If you wanted to do something like this you would need to manage an annotation's position manually.
Regrouping pins at different zoom levels isn't too far of a stretch using a Quadtree data structure for the pins. I wonder whether it would be appropriate to utilise GamePlay...
The pin placement is just a giant [for loop](https://github.com/jessedc/JCTiledScrollView/blob/master/JCTiledScrollView/Source/JCTiledScrollView.m#L313) it wouldn't be too difficult to extend.
The tiled scroll view project vends a static library target. The demo project is setup to depend on the tiled scroll view project without using cocoapods, this should be a...
I think I'm right in saying that scales 2.5/10/40 won't tile cleanly. The underlying CATiledLayer will call back looking for tiles at scales that are a multiple of the screen...
Hi @onuryilmazcom, Slicetool is a very basic tool that only works as much as I ever needed it too. It's remained unchanged for a long time now. To do multiple...
I'm not clear what you're trying to do. Can you elaborate?
You'd have to modify some internals of JCTiledScrollView. I'm not sure what you've already tried, but off the top of my head, a persistent background image that appears as a...