Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
UIViewController: Difference between revisions - iPhone Development Wiki

UIViewController: Difference between revisions

From iPhone Development Wiki
m (Created page with 'UIViewController is a root class of all ''controllers'' that managers a UIView. == attentionClassDumpUser:... == {{function signature |signature=-(void)attentionClassDu…')
 
(citation needed for this...)
 
Line 7: Line 7:
}}
}}


UIViewController is the host of the famous method <tt>-[UIViewController(UIViewControllerClassDumpWarning) attentionClassDumpUser:...]</tt>. This method was added in 3.0 as an attempt to scare off developers using undocumented methods. The method itself is a no-op.
UIViewController is the host of the famous method <tt>-[UIViewController(UIViewControllerClassDumpWarning) attentionClassDumpUser:...]</tt>. This method was added in 3.0 as an attempt to "scare off" developers using undocumented methods. The method itself is a no-op.


== References ==
== References ==

Latest revision as of 07:05, 21 January 2014

UIViewController is a root class of all controllers that managers a UIView.

attentionClassDumpUser:...

Signature -(void)attentionClassDumpUser:(id)arg1 yesItsUsAgain:(id)arg2 althoughSwizzlingAndOverridingPrivateMethodsIsFun:(id)arg3 itWasntMuchFunWhenYourAppStoppedWorking:(id)arg4 pleaseRefrainFromDoingSoInTheFutureOkayThanksBye:(id)arg5;
Available in 3.0 –

UIViewController is the host of the famous method -[UIViewController(UIViewControllerClassDumpWarning) attentionClassDumpUser:...]. This method was added in 3.0 as an attempt to "scare off" developers using undocumented methods. The method itself is a no-op.

References