{ "id": "111681", "key": "TIMOB-13206", "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": [], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2013-03-25T23:40:03.000+0000", "created": "2013-03-25T23:10:43.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "regression" ], "versions": [ { "id": "14164", "description": "Release 3.0.2", "name": "Release 3.0.2", "archived": true, "released": true, "releaseDate": "2013-02-19" } ], "issuelinks": [ { "id": "26978", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "109923", "key": "TIMOB-13175", "fields": { "summary": "iOS: TableView setData() is broken on 3.0.2.GA", "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" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "mstepanov", "key": "mstepanov", "displayName": "Max Stepanov", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-20T22:19:27.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": "h3. Description\r\nIf you add a searchBar to a tableView and set searchHidden:true on the tableView, you can not properly setData to the table.\r\n\r\nh3. iOS Error Message\r\n{code}\r\n2013-03-25 16:07:12.269 testApp[58263:1be03] *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2380.17/UITableView.m:909\r\n{code}\r\n\r\nh3.Simple Sample App\r\n{code}\r\nvar win = Ti.UI.createWindow();\r\n\r\nvar searchBar = Ti.UI.createSearchBar();\r\n\r\nvar table = Ti.UI.createTableView({\r\n search:searchBar,\r\n searchHidden:true\r\n});\r\n\r\nwin.add(table);\r\n\r\npopulateTable(5);\r\n\r\nsetInterval(function(){\r\n var num = Math.floor(Math.random()*8);\r\n populateTable(num);\r\n}, 5000);\r\n\r\nfunction populateTable(len){\r\n var rows = [];\r\n for(var i = 0; i