I want to create an UIView Class that you can init with several options. I think the problem is the drawRect Methode. Is there a possibility to init the class with a certain option like
[[MyUIView alloc]initWithColor:[UIColor blueColor]]
I read about that I should never call the drawRect method without initalising an object.
So how can I realize the statement above without calling it manually?
What I tried so far:
I thought that I just initalize the View and then call Methode [MyView changeColorTo:green] which tries to redraw the View. But basically it won't work.
Maybe it's important that I draw with coreGraphics(with a certain color, which should be choosable) a rounded rect in the drawRect method.