I am new to iOS Application development, please help me how can I go from one view controller
to another view controller
on button click?
相关问题
- How can I create this custom Bottom Navigation on
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
Follow the below step,let the button selector is
[button addTarget:select action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];
and implement the selector asand also make sure viewController has NavigationController embedded within it and replace UIViewController with the Controller you wish to push.
Try this code:
Use this code in your
Objective-C
function for navigation -//or
Visit this reference for tutorial and working demo code
Hope, this will help you..enjoy
You can use any of approach -
Try this: