gokulgovind / GLNotificationBar

GLNotificationBar is a ios10 style notification bar, can be used to handle push notification in active state.
MIT License
302 stars 44 forks source link

'frame' is only available on iOS 12.0 or newer #28

Open wjsimard opened 5 years ago

wjsimard commented 5 years ago

Building with Xcode 10 leaves this message in GLNotificationBar.swift line 592 : 'frame' is only available on iOS 12.0 or newer.

StellarKuldeep commented 5 years ago

@wjsimard I have the same issue. Did you found any solution?

Kernelzero commented 5 years ago

use this code when iOS 12 earlier

let frame = toObject.frame

to

let toObject:UIView = toObject as! UIView let frame:CGRect? = toObject.frame