Yes indeed that worked for me too. Thanks!
Post
Replies
Boosts
Views
Activity
Whats also super awesome is that applying fixits automatically actually duplicates the fixit on each line.
e.g.
var color: CGColor = UIColor.red.CGColor
Gives two errors: 'CGColor' has been renamed to 'cgColor'
Applying fix all issues turns applies the fix twice resulting in:
var color: CGColor = UIColor.red.cgColorcgColor
(Submitted as FB9637621)
I'm struggling with this too. I've almost managed to get it working but the rendered image is incorrect.The NavigationView items bleed over into the below view (i.e. they are correct in the app but the rendered image has the navigation title and barbutton items shifted down and overapping the view just below the navigation view.In addition if I try to capture the whole screen and extract the specific subview, the reported view size is incorrect - i.e. the attached GeomertyReader provides the size of the view however when that size is used, the extracted image also includes a region around the view.