IgniteEngine-iOS
IgniteEngine-iOS copied to clipboard
A platform for rapidly building native mobile applications using declarative JSON.
the previous count_rows no longer works
`[self setResponseTime];` is never called. Furthermore, when calling it, the value returned is erroneous since the StartTime appears to only be set (`[self setRequestStartTime:CFAbsoluteTimeGetCurrent()];`) when the DS is initialized and...
Since moving to only having the Starter Kit project and using Cocoapods exclusively, we need to configure the podspec to at the very least preserve the Classes folder hierarchy. Developing...
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
We need a way to define/create arrays or a dictionary to be used as a datasource without having to make a REST call or load a local JSON. Simple use...
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...