20 lines
438 B
Objective-C
20 lines
438 B
Objective-C
//
|
|
// NSTextStorage+MPSetContents.m
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 21.04.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "NSTextStorage+MPSetContents.h"
|
|
|
|
@implementation NSTextStorage (MPSetContents)
|
|
|
|
- (void)setString:(NSString *)string
|
|
{
|
|
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:string];
|
|
[self setAttributedString:attributedString];
|
|
}
|
|
|
|
@end
|