Kazuhiro Hayashi
Kazuhiro Hayashi
You can change the text color with the following properties. https://github.com/kazuhiro4949/PagingKit/blob/master/Sources/Menu%20Cells/Overlay/OverlayMenuCell.swift#L32L48
@richoh86 I'm sorry for the late reply... > Is it impossible to load all contentViewControllers before tap or swipe the menu? It's not possible, because PagingKit saves an app's memory....
Yes. PagingMenuViewController and PagingContentViewController are inherited from UIViewController. So you can use them like UIViewController. If you don't know how to add a child vc to the parent vc programmatically,...
@huy-lv You can use the following methods. ``` pagingMenuViewController.scroll(index: 2) pagingContentViewController.scroll(to: 2, animated: true) ``` https://github.com/kazuhiro4949/PagingKit/blob/master/Sources/PagingMenuViewController.swift#L165 https://github.com/kazuhiro4949/PagingKit/blob/master/Sources/PagingContentViewController.swift#L204
I'm sorry to reply late. You can put PagingContentViewController.view and PagingMenuViewCnotrller.view on table view cell.
Thank you for your opinion! > That seems odd behavior I guess you're right, but It is difficult to decide a next vc before stopped scrolling. Because a user can...
Thanks for your question. I'll check the issue.
You need to make a custom cell inheriting PagingMenuCell. This library behaves like UITableView, so It expects to get a object inheriting PagingMenuCll. How to make a cell by yourself:...
@168342 Do you mean RTL? This doc describes how to support it. https://github.com/kazuhiro4949/PagingKit/blob/master/Documentation/Tips.md#rtl-support
@luowen1991 Thanks for your report. TitleLabelMenuViewCell is supporting this feature now. See SimpleViewController in the repository.