-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add conversion support from French number string to number. (#737)
- Loading branch information
Showing
6 changed files
with
58 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// MJFrenchUser.h | ||
// MJExtensionTests | ||
// | ||
// Created by Frank on 2019/9/26. | ||
// Copyright © 2019 MJ Lee. All rights reserved. | ||
// | ||
|
||
#import "MJUser.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MJFrenchUser : MJUser | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// MJFrenchUser.m | ||
// MJExtensionTests | ||
// | ||
// Created by Frank on 2019/9/26. | ||
// Copyright © 2019 MJ Lee. All rights reserved. | ||
// | ||
|
||
#import "MJFrenchUser.h" | ||
|
||
@implementation MJFrenchUser | ||
|
||
+ (NSLocale *)mj_numberLocale { | ||
return [NSLocale localeWithLocaleIdentifier:@"fr_FR"]; | ||
} | ||
|
||
@end |