spiegel-keyman/mac/Keyman4MacIM/KeymanTests/AppleCompliantTestClient.m
2024-05-13 17:07:52 +07:00

18 lines
437 B
Objective-C

//
// AppleCompliantTestClient.m
// KeymanTests
//
// Created by tom on 6/25/18.
// Copyright © 2018 SIL International. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AppleCompliantTestClient.h"
@implementation AppleCompliantTestClient
- (NSAttributedString*)attributedSubstringFromRange:(NSRange)range {
return [[NSAttributedString alloc] initWithString:[super substringFromRangeProtected:range]];
}
@end