apigee / IgniteEngine-iOS

A platform for rapidly building native mobile applications using declarative JSON.
https://ignite.apigee.com
Other
21 stars 14 forks source link

Modernize Function like we've done for Modify, possibly deprecate load/refresh #138

Open brandonscript opened 9 years ago

brandonscript commented 9 years ago
{
    "_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:

{
    "_type": "Function",
    "do": {
        "myDataSource": "load",
        "myTable": "refresh"
    }
    "on": "touchUp"
}