{ "id": "83783", "key": "TIMOB-6654", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "14127", "description": "Sprint 2012-19 API", "name": "Sprint 2012-19 API", "archived": true, "released": true, "releaseDate": "2012-09-24" } ], "resolution": { "id": "5", "description": "All attempts at reproducing this issue failed, or not enough information was available to reproduce the issue. Reading the code produces no clues as to why this behavior would occur. If more information appears later, please reopen the issue.", "name": "Cannot Reproduce" }, "resolutiondate": "2012-09-12T11:18:33.000+0000", "created": "2011-12-13T18:31:05.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "api" ], "versions": [ { "id": "12570", "name": "Release 1.7.5", "archived": true, "released": true, "releaseDate": "2011-11-02" }, { "id": "12580", "description": "Dual Runtime 1.8.0", "name": "Release 1.8.0.1", "archived": true, "released": true, "releaseDate": "2011-12-22" } ], "issuelinks": [], "assignee": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2013-03-13T15:03:39.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "h4.Issue\r\nIf you have a Picker Column with a basic picker row added with just a title, and then have another row added with an object (label or Image) added to the row, the app will eventually crash after several picker row changes.\r\n\r\nh4. Code Sample\r\n{code}\r\nvar win = Ti.UI.createWindow();\r\n\r\nvar picker = Ti.UI.createPicker({\r\n\t\ttop: 50,\r\n\t\tleft: 0,\r\n\t\tright: 0,\r\n\t\tselectionIndicator: true\r\n\t});\r\n\r\n\twin.add(picker);\r\n\r\n\tvar oCountryRows = [];\r\n\r\n\tvar colCountries = Ti.UI.createPickerColumn({\r\n\t\twidth: 100\r\n});\r\n//////WILL CRASH APP/////////////\r\n\tvar rowAny = Ti.UI.createPickerRow({\r\n\t\tfontSize: 12,\r\n\t\tfont: {fontSize:12},\r\n\t\tid: 0,\r\n\t\ttitle: 'Any'\r\n\t});\r\n///////////////////////////////////\t\r\n\r\n//////WORKS FINE///////////////////\r\n\t// var rowAny = Ti.UI.createPickerRow();\r\n\t// var coAnyLabel = Ti.UI.createLabel({\r\n\t\t// text:'Any',\r\n\t\t// color:'#000',\r\n\t\t// textAlign:'center',\r\n\t\t// font:{fontWeight:'bold', fontSize:12}\r\n\t// });\r\n\t// rowAny.add(coAnyLabel);\r\n//////////////////////////////////////\r\n\tcolCountries.addRow(rowAny);\r\n\toDataCountry = [\r\n\t\t{id:0,name:'England'}, \r\n\t\t{id:1,name:'France'},\r\n\t\t{id:2,name:'Scotland'},\r\n\t\t{id:3,name:'South-Africa'},\r\n\t\t{id:4,name:'Turkey'},\r\n\t\t{id:5,name:'Wales'}\r\n\t];\r\n\tfor(var i=0;i