Reputation: 409
I am totally fresher for ios development so please forgive me if my question is illogical. I have one existing ios app and I want to modify only layout part but i didn't found any xib file or storyboard file
I had read something like that there are 3 files for every event-.xib,.h & .m but In this application only .h and .m files are there..
My app folder is like : SelectCountry(Folder)
SelectEvent.h
SelectEvent.m
My question is how do I change layout of particular page
Upvotes: 0
Views: 88
Reputation: 6557
UI doesn't necessarily has to be implemented from xib
or storyboard
. It can also be done programatically. This might be in your case. To make sure there's no .xib
or .storyboard
file in your project, press Cmd+Shift+o
(<- letter O) and search for .xib
or .storyboard
in the popup.
If that yields no result, try searching for initWithFrame
in your project.
Upvotes: 2