-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
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
UIGraphicsBeginImageContextWithOptions(layer.frame.size, NO, scale);
To fix this, we need to render only rect.size:
UIGraphicsBeginImageContextWithOptions(rect.size, NO, scale);
Metadata
Metadata
Assignees
Labels
No labels