mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 12:38:09 +00:00
17 lines
310 B
Objective-C
17 lines
310 B
Objective-C
//
|
|
// UILabel+Boldify.h
|
|
// linphone
|
|
//
|
|
// Created by guillaume on 20/05/2015.
|
|
// Copyright (c) 2015 Urmet. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UILabel (Boldify)
|
|
|
|
- (void)boldSubstring:(NSString *)substring;
|
|
- (void)boldRange:(NSRange)range;
|
|
|
|
@end
|