Merge pull request #1439 from NativeScript/vladimirov/scrollview-new-fix

Fix the new UIScollView failing to pick initializer in Xcode 7.0
This commit is contained in:
Panayot Cankov
2016-01-26 16:38:45 +02:00

View File

@ -42,7 +42,7 @@ export class ScrollView extends common.ScrollView implements definition.ScrollVi
constructor() { constructor() {
super(); super();
this._scroll = new UIScrollView(); this._scroll = UIScrollView.new();
} }
protected attachNative() { protected attachNative() {