mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
16 lines
293 B
Objective-C
16 lines
293 B
Objective-C
//
|
|
// UIRoundedImageView.h
|
|
// linphone
|
|
//
|
|
// Created by guillaume on 13/05/2014.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIRoundedImageView : UIImageView
|
|
|
|
- (void)setImage:(UIImage *)image;
|
|
- (void)setImage:(UIImage *)image bordered:(BOOL)bordered withRoundedRadius:(BOOL)rounded;
|
|
|
|
@end
|