We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to check if easy to customize the width of the subclass of CLTableViewController ( which is the middle view of the demo ).
We have two types of width
// enums typedef enum { CLViewSizeNormal = 0, CLViewSizeWider = 1 } CLViewSize;
For CLViewSizeNormal, does the logic is to calculate the width ? and for the CLViewSizeWider, it will use all the left width.
So my question is how to simply customize the width ? Thanks,
The text was updated successfully, but these errors were encountered:
Everything what you want is in the example project. You can make your own subclass of CLViewController and change init method:
But there is a catch, only last view controller can be in wider mode (the same as in Twitter App)
Sorry, something went wrong.
No branches or pull requests
I want to check if easy to customize the width of the subclass of CLTableViewController ( which is the middle view of the demo ).
We have two types of width
// enums
typedef enum {
CLViewSizeNormal = 0,
CLViewSizeWider = 1
} CLViewSize;
For CLViewSizeNormal, does the logic is to calculate the width ? and for the CLViewSizeWider, it will use all the left width.
So my question is how to simply customize the width ? Thanks,
The text was updated successfully, but these errors were encountered: