mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-22 22:36:07 +08:00
16 lines
311 B
Objective-C
16 lines
311 B
Objective-C
//
|
|
// NSString+WeChatTweak.h
|
|
// WeChatTweak
|
|
//
|
|
// Created by Sunnyyoung on 2017/8/12.
|
|
// Copyright © 2017年 Sunnyyoung. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSString (WeChatTweak)
|
|
|
|
- (NSString *)tweak_subStringFrom:(NSString *)beginString to:(NSString *)endString;
|
|
|
|
@end
|