Brandon Shelley
Brandon Shelley
``` { "_type": "Function", "do": { "myActionSheet": "present" } "on": "touchUp" } ``` Would give some serious thought to getting rid of Load/Refresh entirely and making them globally available functions:...
There are some straggling events that are not standardized. Let's get these cleaned up.
We need some sort of willPresentCell animation to show and hide images and content-heavy cells. Currently a side-scrolling table with some images from, e.g. Instagram, is quite jittery.
Seems unnecessary to have two disparate means of controlling height/width. Change autofill.h and autofill.w to simply be: size.h: autofill size.w: autofill
See https://github.com/ApigeeDelta/ignite-iOS-engine/commit/26fe43771452ad33a0726fdf9968383600170d33 TODO: - [ ] A way of storing these in a file (eventually CoreData?) - [ ] Migrate these functions into JSONUtils class
Not sure how we're going to implement this yet, but the mutually exclusive if-statements are a bit of a challenge at times. Should support the following syntaxes: ``` if ::...
Currently this doesn't work: ``` {{ var foo=[]; foo.push([[$self.text]]); JSON.stringify(foo); }} ``` But this does: ``` {{ var foo=[]; foo.push('[[$self.text]]'); JSON.stringify(foo); }} ``` (with quotes around the variable). Can we...
Currently it appears that you have to specify the local path manually; this is bad practice, and we should be adhering to Apple's [documents directory guidelines](https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html#//apple_ref/doc/uid/TP40010672-CH2-SW2).
The APParallaxHeader fork dev appears to have added some new options - either revert back to using the master pod, or update ours. Original: https://github.com/apping/APParallaxHeader/commits/master Fork we forked from: https://github.com/NZN/APParallaxHeader
Currently 'Layout' etc are all case sensitive. Should support lowercase (camelCase) as well.