Hello everyone. Im working on the graphics of my app but I noticed that some of the backgrounds are a little blurry and on some the background is fine but the letters that I put straight into the background in photoshop are blurry. For what I know photoshop is the tool to do this for apps. This is the code im using to incorperate the background.
I also made some images to put as the background of cells but the different words I put there with photoshop aswell are blurry but the border of the "button" looks clear. Any tips, tricks, or tuts anyone can share would be great. Thanks.
[EDIT]
By the words I mean they are not as clear as the ones I added in using labels and such. Its the same font and color but not size, which shouldnt make a difference.
[EDIT 2]
Figured out the text being blurred part. Didnt add the @2x for them. I did check the other backgrounds and made sure the @2x was added and also checked to make sure they were really @2x. Still have the slight background blur.
E.
Code:
UIGraphicsBeginImageContext(self.view.frame.size);
[[UIImage imageNamed:@"Background.png"] drawInRect:self.view.bounds];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.view.backgroundColor = [UIColor colorWithPatternImage:image];
I also made some images to put as the background of cells but the different words I put there with photoshop aswell are blurry but the border of the "button" looks clear. Any tips, tricks, or tuts anyone can share would be great. Thanks.
[EDIT]
By the words I mean they are not as clear as the ones I added in using labels and such. Its the same font and color but not size, which shouldnt make a difference.
[EDIT 2]
Figured out the text being blurred part. Didnt add the @2x for them. I did check the other backgrounds and made sure the @2x was added and also checked to make sure they were really @2x. Still have the slight background blur.
E.
Last edited: