When I create a new shared iOS library CoreServices then there is a class created CoreServices which has an init method.
Does that mean that every library will somehow be instantiated through this object? If not what is this object good for?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No it isn’t, that’s just a template class that’s created with the library. I will usually delete the implementation file for this and use the header as the public header for the library (i.e. import all the externally visible classes in this header file).