I'm doing Swift and iOS and I have a question.
Lets say I am in ViewController1
and I want an image of TableViewController1
after that class calls viewDidLoad()
, is this possible?
I know its possible to convert the current view into a UIImage etc, but is it possible to do it of another view?
Any help is appreciated. Thanks!
Edit: Here is the plan. I call func x()
in ViewController1
. What this method should essentially do is return a UIImage
of TableViewController1
instance after viewDidLoad()
was called in TableViewController1
. Is this clear?