IPhone SDK - How to implement Apple as a UIAlertView rating?

Does anyone have an idea how to implement UIAlertView for rating purposes like Apple when you uninstall the application from iPhone?
You can choose how many stars to rate the application or not to rate it at all.
I already have a view showing stars according to the user, but don’t know how to connect it to UIAlertView ...

Thanks!

+4
source share
2 answers

I like TSAlertView . This is a complete replacement for UIAlertView based on UIView. This way you are not using private APIs. I used it in several projects and I really like it. Take a look at this. With this, it should be easy for you to add your star view to your AlertView, because you have methods to add a contentView.

+1
source

Source: https://habr.com/ru/post/1306792/


All Articles