How to create a Pin Wheel (like a Daisy Wheel) on iPhone

I want to create a pin wheel (e.g. msnbc applications). See image below. How to create a pin wheel. Is there any example code or tutorials? .Please tell me how to achieve this?

Image example http://www.freeimagehosting.net/uploads/e11f35e522.png

Thank.

+3
source share
1 answer

If you only need basic images, you can create it and then load it into a UIImageView like this: (assuming you have defined and run it)

imageView.image = [UIImage imageNamed:@"YOUR-Image-File.png"];

If you want them to rotate, make sure that the center of each image is the point from which you want to rotate.

, , .

0

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


All Articles