In any language that passes values by reference memory management will need to be front of mind. In iOS you can use the memory graph and on Android you have the Memory Profiler to help you trace unreleased objects and mitigate leaks. Scenario Say you want to an object to be notified when changes occur…
Read MoreTag: iOS
Animating Views With UILongPressGestureRecognizer
Creating a button in iOS is simple but if you want a more responsive button like the ones Apple Uses in their app store, you need to get creative with gestures. Feel free to reproduce and implement this gist however you see fit. https://gist.github.com/willconno/dd891db6764a82bbc6e9633e9ec7b67c UILongPressGestureRecognizer In order to be notified when the user first presses…
Read More