IgniteEngine-iOS icon indicating copy to clipboard operation
IgniteEngine-iOS copied to clipboard

A platform for rapidly building native mobile applications using declarative JSON.

Results 87 IgniteEngine-iOS issues
Sort by recently updated
recently updated
newest added

the previous count_rows no longer works

defect
docs
dev-complete

`[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...

defect
dev-complete

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.

rename

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.

enhancement

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

enhancement

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

enhancement
docs

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...

enhancement

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 ::...

enhancement

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...

enhancement