In Interface Builder I in Library->Classes when I select a class that I made in XCode, then display the Actions, I can see two with the same name:
foo
foo:
What is the difference between these two foos?
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.
foois a method that doesn’t accept any arguments.foo:passes an argument or arguments into its method.Example:
will be shown as
fooin IB.will be shown as
foo:in IB.I don’t know why they have the same name, do you have them set that way?