I am currently building an app to measure the pixels in a cropped image. This is why I need to use some internal variables of the pod such as:
internal lazy var photoView in the IGRPhotoTweakViewController.swift. Changed it to public lazy var photoView
private(set) lazy var photoContentView in the IGRPhotoTweakView.swift. Changed it to public private(set) lazy var photoContentView
Do you think you can change this variables to public so I can still use the pod in the future to crop the image and still be able to obtain the pixels without having to modify the internal code you have created?
Also, I would like to thank you for this amazing program, it has helped me a lot! I will attach the files in which I did the changes from private to public in case you want to take a look.
podChanges.zip
Hi!
I am currently building an app to measure the pixels in a cropped image. This is why I need to use some internal variables of the pod such as:
Do you think you can change this variables to public so I can still use the pod in the future to crop the image and still be able to obtain the pixels without having to modify the internal code you have created? Also, I would like to thank you for this amazing program, it has helped me a lot! I will attach the files in which I did the changes from private to public in case you want to take a look. podChanges.zip
Best regards,
Manuela