I have created a new project in Ios5 using storyboards and my project has a UIPickerView.
I created a datasource and delegate and I cannot find the files owner to make connections in IOs5 . What should I make the connections to?
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.
One difference between storyboards and loading .xib files is that the view controller for each “scene” in a storyboard file is included in that file. So, assuming that your view controller is also the data source and delegate for your picker (this is common), connect the view controller to those outlets instead of the file’s owner proxy. (With .xib files, it’s typical to instantiate the view controller in code and give it a .xib file from which to load its view, so the view controller is the file’s owner.)