开发者

Composite Chart + Objective C

I want to implement below chart like structure. Explanation: 1. Each block should be clickable. 2. If the block is selected, it will be highlighted(i.e. Red block in figure).

I initially google for this but was unable to find. What should be "Drawing logic" corresp开发者_运维问答onding to this with animation?Thanx in advance.

Composite Chart + Objective C


I think you need to use MCSegmentedControl.

You can get it from here.


Generally speaking, I'd have an image for the outline with a transparent middle, then dynamically create colored blocks behind it of the appropriate colors, with dynamic labels. The highlighting is a little tricky, but could be done with a set of image overlays. One could also try to shrink and expand fixed images for the bars/highlighting, but iPhone scales images poorly.

(Will it always be 4 blocks? There are a couple of other ways to manage it using fixed-size images overlaying each other.)


Maybe you should look into using CALayer for this?


U need to implement this type of logic using button. Just scale button width according to percentage.

And to make round rect button like appearance use the code below and don't forget to import quartz-core framework in class file.

And to scale first and last button as you need some overlap from nearby button.

btn.layer.cornerRadius = 8.0;
btn.layer.borderWidth = 0.5;
btn.layer.borderColor = [[UIColor blackColor] CGColor];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜