On iPad 3 following line takes around 10-12 seconds to render as it is rendering in complete frame: **URL** https://github.com/Moped/MPNotificationView/blob/master/MPNotificationView/MPNotificationView.m#L454 **Code** ``` ios UIGraphicsBeginImageContextWithOptions(layer.frame.size, NO, scale); ``` To fix this, we need to render only rect.size: ``` ios UIGraphicsBeginImageContextWithOptions(rect.size, NO, scale); ```
On iPad 3 following line takes around 10-12 seconds to render as it is rendering in complete frame:
URL
https://github.com/Moped/MPNotificationView/blob/master/MPNotificationView/MPNotificationView.m#L454
Code
To fix this, we need to render only rect.size: