[TIMOB-16097] iOS: Add additional left/right NavButtons
| GitHub Issue | n/a |
| Type | New Feature |
| Priority | Critical |
| Status | Closed |
| Resolution | Duplicate |
| Resolution Date | 2014-08-05T18:05:18.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 3.3.0 |
| Components | iOS |
| Labels | n/a |
| Reporter | Thomas Neerup |
| Assignee | Ingo Muschenetz |
| Created | 2013-03-08T14:40:21.000+0000 |
| Updated | 2017-03-22T21:58:39.000+0000 |
Description
Steps to Reproduce
Please provide the posibility to add more buttons to the right/leftNavButtons
In XCode it is possible to add an array to the left/rightNavButtons.
Actual Result
No support
Expected Result
Add support
Comments
JSON Source
The rightNavButton property expect an object of type Ti.UI.View; this means that you can add any view to it, not only buttons. You can then create a wrapper view and put the two buttons in it:
Hope it helpsvar view = Ti.UI.createView({ layout: 'horizontal' }); var btn1 = Ti.UI.createButton({ title: 'Btn 1' }); var btn2 = Ti.UI.createButton({ title: 'Btn 2' });Hi Ingo This has been resolved in SDK. 3.3.0 so this request can be closed...
Closing ticket as duplicate and links to the related ticket has been provided above.