I am working on an iphone application where I want to add a different frame(e.g. black grit, oldtime, etc) to an image and save that image with that frame.
Is it possible in iphone application. Please give me suggestion.Thanks.
I am working on an iphone application where I want to add a different frame(e.g. black grit, oldtime, etc) to an image and save that image with that frame.
Is it possible in iphone application. Please give me suggestion.Thanks.
Check this question.
You need to implement following code:
#import <QuartzCore/QuartzCore.h>
[imageView.layer setBorderColor: [[UIColor blackColor] CGColor]];
[imageView.layer setBorderWidth: 2.0];