[TIMOB-17709] iOS: TableViewSection headerTitle font size difference between iOS 7.1 and 8
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | n/a |
Reporter | Jeroen van Vianen |
Assignee | Unknown |
Created | 2014-09-10T21:02:57.000+0000 |
Updated | 2018-02-28T20:03:42.000+0000 |
Description
The following app.js shows a different font size for a tableview sections headerTitle:
var win = Ti.UI.createWindow({
title: 'Tableview header test'
});
var tableview = Ti.UI.createTableView({
top: 43
});
var headerRow = Ti.UI.createTableViewSection({
headerTitle: 'HEADERTEXT HEADERTEXT HEADERTEXT'
});
tableview.data = [headerRow];
win.add(tableview);
win.open();
Of course both should show the same given the same device (in the example screenshots iPhone 5S Simulator)
Attachments
File | Date | Size |
---|---|---|
iphone5s_ios71.png | 2014-09-10T21:02:57.000+0000 | 18135 |
iphone5s_ios8.png | 2014-09-10T21:02:57.000+0000 | 17084 |
This seems to be native behavior. An Xcode application was created to replicate the code above, with the results matching those found using Appcelerator studio.