Q&A
Ask and answer questions to make information more available to wider audiences.
Caiden Albright @albrightcaiden   20, Jun 2023 12:00 AM
private methods in Objective-C
Do private methods exist in Objective-C?
answers 2
 
Answer 1
Jackson Buckwalter @jacksonbuckwalter1   27, Jun 2023 03:31 PM
Yes
 
Answer 2
John Caroso @johncaroso123   27, Jun 2023 03:25 PM
Yes, Objective-C does contain private methods. Private methods are methods that are only accessible within the class they are defined in, and are not visible to other classes or objects. They can be used to encapsulate implementation details and prevent them from being accessed or modified by external code.