Is there a UIView method called after drawRect completes?
No no. Why do you need such a method?
If you absolutely need it, you can always subclass UIView and override the drawRect message as follows:
- (void)drawRect:(CGRect)rect { [super drawRect:rect]; // do your stuff here }
Hope this helps.
I think you are looking for viewDidAppear: Be sure to use the UIViewController .
viewDidAppear:
UIViewController
Source: https://habr.com/ru/post/1305108/More articles:Using timelines in universal_time - c ++How to change column background color using extenders in Eclipse? - eclipseMercurial, forget files forever - version-controlServer.UrlEncode (string s) ... not - javascriptRegex Negative Matching Request - regexIs our checkpoint management agency using a robot? - google-adwordsVisual Studio recompiles the project every time I try to run it - c ++SQL IN expression and ordering of results - arraysDeserializing JSON with C # JavaScriptSerializer - jsonWhat is the Dojo jQuery Area Attribute Equivalent? - scopeAll Articles