You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
about EAIntroPage you have three attribute, @Property (nonatomic,copy) VoidBlock onPageDidLoad; @Property (nonatomic,copy) VoidBlock onPageDidAppear; @Property (nonatomic,copy) VoidBlock onPageDidDisappear;
But it has limitations.
I hope you can provide some other attributes, such as @Property (nonatomic,copy) VoidBlock onPageWillAppear; @Property (nonatomic,copy) VoidBlock onPageWillDisappear;
like UIview life cycle,
Being able to add some other attribute like UIView life cycle, would be appreciated.
Thanks for the consideration.
The text was updated successfully, but these errors were encountered:
When onPageWillAppear and onPageWillDisappear should be called?
What is actual need for this number of events? I assume any "init" code for onPageWillAppear can be safely and effectively done in onPageDidLoad. And any "deinit" - in onPageDidDisappear.
about EAIntroPage you have three attribute,
@Property (nonatomic,copy) VoidBlock onPageDidLoad;
@Property (nonatomic,copy) VoidBlock onPageDidAppear;
@Property (nonatomic,copy) VoidBlock onPageDidDisappear;
But it has limitations.
I hope you can provide some other attributes, such as
@Property (nonatomic,copy) VoidBlock onPageWillAppear;
@Property (nonatomic,copy) VoidBlock onPageWillDisappear;
like UIview life cycle,
Being able to add some other attribute like UIView life cycle, would be appreciated.
Thanks for the consideration.
The text was updated successfully, but these errors were encountered: