I am new to the rapid development and development of iOS.
System Information: Xcode 6.1 OS X 10.10.1 Release Notes
There are two view controllers in my application: ViewA and ViewB (there is no navigation controller), and I want to go to ViewB from ViewA by clicking UIButton in ViewA. ViewA was installed as the initial view controller in the application.
Following some online instructions, I pressed ctrl and dragged UIButton to ViewA to point to ViewB in the storyboard window. However, I have only an incomplete list of transitions (4 items in total), since I could not see the "show" element.
#
Action Segue From myself modal order
#
It may look like in older versions, but it is done in Xcode 6.1.
I saw several on-screen copies of the menu from other people, they have much more items in their action list. Since there is no “show” in my segue action list, I used a “custom” element. It also helped me navigate to ViewB, but I got the following warning when compiling.
"User segments must have their own class" "Unsupported configuration User segments must have a client class"
My questions: 1) How can I access the built-in “show” time in the segue action list? 2) Since everything is working fine so far, are there any problems with sending a warning message?
Please feel free to let me know if you need more information to identify problems.
Since I'm new to iOS development, my questions may be dumb, but I need your help. I appreciate your implications with my questions.