[TIMOB-19941] Black bar at bottom of all ScrollableViews with SDK 5.1.x in IOS
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | Critical | 
| Status | Closed | 
| Resolution | Duplicate | 
| Resolution Date | 2015-11-16T18:01:47.000+0000 | 
| Affected Version/s | n/a | 
| Fix Version/s | Release 5.1.0 | 
| Components | iOS | 
| Labels | n/a | 
| Reporter | John Alexander Ordoñez | 
| Assignee | Angel Petkov | 
| Created | 2015-11-11T15:11:19.000+0000 | 
| Updated | 2017-03-21T23:16:50.000+0000 | 
Description
	Wherever a ScrollableView is used it has a black bar at the bottom. I created a new application and it has the same problem.
<Alloy>
	<Window>
		<ScrollableView>
			<View title="Tab 1">
				<Label>I am page 1</Label>
			</View>
			<View title="Tab 2">
				<Label>I am page 2</Label>
			</View>
		</ScrollableView>
	</Window>
</Alloy>
"Window": {
	backgroundColor: "#fff"
}
"Label": {
	width: Ti.UI.SIZE,
	height: Ti.UI.SIZE,
	color: "#000",
	font: {
		fontSize: 20,
		fontFamily: 'Helvetica Neue'
	},
	textAlign: 'center'
} 
!Simulator Screen Shot Nov 10, 2015, 10.31.39 AM.png|thumbnail!
Attachments
| File | Date | Size | 
|---|---|---|
| Simulator Screen Shot Nov 10, 2015, 10.31.39 AM.png | 2015-11-11T15:05:42.000+0000 | 26486 | 
| Simulator Screen Shot Nov 12, 2015, 12.07.07 PM.png | 2015-11-12T06:37:38.000+0000 | 21865 | 
Hello , we have looked at the problem and believe this PR should fix it. While the showPagingControl property is set to false inside the scrollableView you should no longer see the black footer. PR pending https://github.com/appcelerator/titanium_mobile/pull/7436.
var win = Ti.UI.createWindow(); var view1 = Ti.UI.createView({ backgroundColor:'#123' }); var scrollableView = Ti.UI.createScrollableView({ views:[view1], showPagingControl:false }); win.add(scrollableView); win.open();Duplicate of TIMOB-19761
Closing ticket as duplicate with reference to the above comments and links.