I play with C4 and can not understand why my figures do not come to life. If I create a form like this:
self.theShape = [C4Shape ellipse:CGRectMake(100, 100, 2, 2)];
... and call later
[theShape setFrame:CGRectMake(200, 200, 50,50)]
The form does not resize. The implementation suggests that it should, but I do not see it. Is there something I'm doing wrong? Is it because I am not updating the canvas?
source
share