ios - count number of Objects in View and Display in Some delay (Animation) -
actually want show animation base on view present animation in background m going push.
now scenario when present view show in delay, each , every view (subview) label, if table tableviewcell
i present view in delay not able show subview in delay.
i have tried this:
let vc = self.storyboard?.instantiateviewcontroller(withidentifier: "presentview") as! presentview let transition:catransition = catransition() transition.duration = 0.8 transition.timingfunction = camediatimingfunction(name: kcamediatimingfunctioneaseineaseout) transition.type = kcatransitionpush transition.subtype = kcatransitionfromtop self.navigationcontroller!.view.layer.add(transition, forkey: kcatransition) self.navigationcontroller?.pushviewcontroller(vc, animated: false)
Comments
Post a Comment