Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a weird issue:

I have a UIScrollView whose background is transparent. Inside of it there are a few UILabels also with a transparent background and with a custom font.

When the scrollview is first displayed everything looks sharp and good but as soon as I start panning the scroll view, the text of the labels gets extremely pixelated.

This does not happen if i set an opaque background to the labels.

Do you have any idea what might be causing this?

share|improve this question
did you ever figure this out? I've been having a similar issue. I have tried using stock fonts and custom fonts but below about 18 font size the fonts that fit our theme look pixalated... – Matthew Clark Aug 6 '12 at 20:26

1 Answer

This sounds like you may be adding several layers of the identical UILabel on top of the others on scroll. Place a debug breakpoint on the code that adds it to your content, and ensure it is only being called once.

The "pixelation" could be caused by the overlapping of anti-aliasing pixels.

share|improve this answer
I'll check if that's the case, thanks! – nilsou Aug 5 '12 at 15:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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