[TIMOB-3609] iOS: TableViewRow's backgroundGradient shows gaps when scrolled quickly
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Do |
Resolution Date | 2020-01-09T19:02:09.000+0000 |
Affected Version/s | Release 1.6.2, Release 2.0.1, Release 3.1.0, Release 3.2.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | reprod, supportTeam |
Reporter | Pedro Enrique |
Assignee | Eric Merriman |
Created | 2011-04-18T10:41:53.000+0000 |
Updated | 2020-01-09T19:02:09.000+0000 |
Description
The title is self explanatory. Here is a test code:
var win = Ti.UI.createWindow();
var table = Ti.UI.createTableView({
backgroundColor: '#F00'
});
for(var i = 0; i < 50; i++) {
var row = Ti.UI.createTableViewRow({
backgroundGradient: {
type:'linear',
colors:['#FFF','#CCC'],
startPoint:{x:0,y:'0%'},
endPoint:{x:0,y:'100%'}
},
height: Math.ceil(70*(1+Math.random()))
});
table.appendRow(row);
}
win.add(table);
win.open();
There is a HelpDesk ticket that reported this:
http://support.appcelerator.com/tickets/AUT-44619-223/homepage
Issue still exists.
^Reproducible with 2.0.1GA2
Issue reproduces Tested with Titanium Studio, build: 3.0.1.201212181159 Titanium SDK version: 3.1.0 iOS iPhone Simulator: iOS SDK version: 6.0
I have been able to reproduce this issue with the following environment; iPhone 7 (10.2) MacOS 10.11.6 (15G31) Studio 4.9.0.201705302345 Ti SDK 6.1.1.v20170609091155 Appc NPM 4.2.9 Appc CLI 6.2.1 Ti CLI 5.0.13 Alloy 1.9.11 Arrow 2.0.0 Xcode 8.2 (8C38) Node v4.8.2 Java 1.8.0_131
It has been decided that this issue should be closed as “Won’t do.” This issue is out of date with our current supported SDK release (7.5.2.GA as of the date of closure), and out of date with mobile OS versions. Updating, or creating code may not reproduce the issue reported, or be a valid test case. If community members feel that the issue is still valid, please create a new ticket. Please reference this closed ticket number, include SDK used, comments, and code that demonstrates/reproduces the issue.