Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-16097] iOS: Add additional left/right NavButtons

GitHub Issuen/a
TypeNew Feature
PriorityCritical
StatusClosed
ResolutionDuplicate
Resolution Date2014-08-05T18:05:18.000+0000
Affected Version/sn/a
Fix Version/sRelease 3.3.0
ComponentsiOS
Labelsn/a
ReporterThomas Neerup
AssigneeIngo Muschenetz
Created2013-03-08T14:40:21.000+0000
Updated2017-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

  1. Davide Cassenti 2013-03-14

    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:
       var view = Ti.UI.createView({
       	layout: 'horizontal'
       });
       
       var btn1 = Ti.UI.createButton({
       	title: 'Btn 1'
       });
       
       var btn2 = Ti.UI.createButton({
       	title: 'Btn 2'
       });
       
    Hope it helps
  2. Thomas Neerup 2014-08-05

    Hi Ingo This has been resolved in SDK. 3.3.0 so this request can be closed...
  3. Lee Morris 2017-03-22

    Closing ticket as duplicate and links to the related ticket has been provided above.

JSON Source