I am using UISegmentedControl (with only one segment) as a button. But problem with this is one cannot change font size in UISegmentedControl (possible in iOS-5+ but I am targeting lower versions devices). Is it possible to extract image of UISegmentedControl from app so that I can use custom UIButton with this image as background?

Any help will be appreciated.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

try UIKit-Artwork-Extractor (look for it on github.com)

link|improve this answer
Thanks. it was useful but not exactly what I want. – chatur Nov 12 '11 at 5:13
feedback
for (UIImageView*imgView in segmentControl.subviews) {
    UIGraphicsBeginImageContext(imgView.frame.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [segmentControl.layer renderInContext:context];
    UIImage *yourImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext(); 
}

and import QuartzCore.framework

link|improve this answer
thanks for the response. This solution works in simulator but fails on device with error message -[UISegment image]: unrecognized selector sent to instance 0x1b98c0. (in my case "thisbutton" is UIsegmentedControl with number of segments 1). DO you have any idea what might be the reason? – chatur Nov 14 '11 at 11:55
but this UIImageView is added by you or is standart ? :) – Igor Bidiniuc Nov 14 '11 at 13:57
It is standard. – chatur Nov 14 '11 at 14:18
see first answer – Igor Bidiniuc Nov 14 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.