andreamazz/AMTagListView

AMTagListView's height

catskytw opened this issue · 2 comments

A wished request.

Is it possible to estimate the height of an AMTagListView if needed to show all tags which could be increased/decreased dynamically?

You can get the height of the taglist by querying its contentSize:

NSLog(@"%@", NSStringFromCGSize(self.tagList.contentSize));

This will be valid after you added your tags. If you want that measure before, I might be able to add a separate method, but right now I don't see the point in doing so.
Let me know if that helps

I'll assume that this is solved