Add multiple cells
Let me know what you think, probably gonna upload some more cells later as this repo is very useful.
I really like the addition of the icon to the AnimatedTitleView, but it should be a part of the same class not in a separate file. I've attached source files that combines the classes.
Working on it. Side note: why do you use categories instead of declaring properties or ivars?
This should work, I let you checking out. I didn't test that. Just remove the "second part" of the .h file to fix the merge conflict.
Side note: why do you use categories instead of declaring properties or ivars?
What do you mean?
Side note: why do you use categories instead of declaring properties or ivars?
What do you mean?
You're using curly braces in @implementation and I thought it was a class extension, my bad. But what are the upsides of doing so on some codes I've seen? People were using @interface in their .h, extension with their variables in the .m, and @implementation in .m too
Declaring ivars in the implementation just defaults them to @private vs the interface being @public. It's just preference to me, I try to only use properties if something need access to a value/object.
What's the point of using ivars then?
What's the point of using ivars then?
Because nothing needs access to the variables. They are just for this class so there's no point in making properties.
Okay I see thanks. I let you check the PR.