I just recently upgraded my copy of Xcode 3 to Xcode 3.1, and I noticed something new in interface builder – the referencing outlet. Can anyone explain what referencing outlets are, and how they relate to mac development?
Share
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.
These are outlets that are set to the object in question. For example, if you select an object that is a window’s delegate, the window’s
delegateoutlet will show as one of the object’s referencing outlets. If it isn’t the window’s delegate, you can make it so by dragging from the “New Referencing Outlet” circle to the window, then clicking on the window’sdelegateoutlet.It’s not a new kind of outlet; it’s just viewing the same outlets from the perspective of the objects in the outlets instead of that of the objects owning the outlets.