Todd Dunham
Todd Dunham
There's an additional lookup endpoint that returns this data: `https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?mt=8&id=` Give that a try using an iPhone user agent. It contains a lot of version history data (`versionHistory`).
@Pit-Storm Curl with an iPhone user agent returns this data: https://pastebin.com/gHyh9V8C The key "`versionHistory`" includes the release notes. Note: You can also add the `&cc=` parameter to the URL for...
@facundoolano @iplanwebsites @koltclassic There's an additional lookup endpoint that returns a LOT more data than just the lookup url: `https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?mt=8&id=` Give that a try using an iPhone user agent. It...
Solved the first question... ``` [self.slidingViewController slideRight]; ```
Ok, I'm going to look into it too! Also, it seems in iOS7 when the top view is a UINavigationController, it's not possible to round the corners :/
Awesome, I'll check that out. I'm using your control in my latest app!
Still working on a solution to rounding the corners... I'm currently trying to come up with a way to determine the topViewController class. So when a button to switch the...
(The difficult part of that is the fact that I have UINavigationControllers as the topViewController!)
Awesome, I really enjoy using it, you did a great job!
That's great, I changed the code to this: ``` BOOL replaceView = YES; if (viewController.storyboard && [viewController.restorationIdentifier isEqualToString:self.topViewController.restorationIdentifier]) { replaceView = NO; [self snapToOrigin]; return; } ``` So that it...