Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-17709] iOS: TableViewSection headerTitle font size difference between iOS 7.1 and 8

GitHub Issuen/a
TypeBug
Priorityn/a
StatusOpen
ResolutionUnresolved
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsn/a
ReporterJeroen van Vianen
AssigneeUnknown
Created2014-09-10T21:02:57.000+0000
Updated2018-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

FileDateSize
iphone5s_ios71.png2014-09-10T21:02:57.000+000018135
iphone5s_ios8.png2014-09-10T21:02:57.000+000017084

Comments

  1. Muhammad Dadu 2014-10-13

    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.

JSON Source