ios - Push segue with Storyboards -
i'm using storyboards universal (iphone/ipad) app. i'm using default master/detail split view.
on split view, working fine, when select item in master view, it's pushed in detail view. on iphone, when select item, detail view presented modal popover (not sure of name), , not push transition (with right left transition , button).
is there wrong on storyboard ? segue between master , detail "show (e.g. push)" segue.
edit: noticed not clear in wanted ! here gifs.
here how app working : http://gph.is/1icn78k
as see, detail view presented popover.
here how want work (this capture of previous version of app, not using storyboards , using obj-c) : http://gph.is/1icnkpe
edit 2 : still in need help. tried lot of things, made lot of research, can't find solution.
try this:
- create segue table view target view , enter identifier
implement function:
func tableview(tableview:uitableview, accessorybuttontappedforrowwithindexpath indexpath: nsindexpath) { performseguewithidentifier("youridentifier", sender: self) }
Comments
Post a Comment