mirror of
https://github.com/tappollo/Xcode-Quick-Localization.git
synced 2026-01-13 08:00:53 +08:00
16 lines
415 B
Objective-C
16 lines
415 B
Objective-C
//
|
|
// OLSettingController.h
|
|
// QuickLocalization
|
|
//
|
|
// Created by Zitao Xiong on 7/18/15.
|
|
// Copyright (c) 2015 nanaimostudio. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
extern NSUInteger QL_CountOccurentOfStringWithSubString(NSString *str, NSString *subString);
|
|
|
|
@interface OLSettingController : NSWindowController
|
|
@property (nonatomic, weak) NSBundle *bundle;
|
|
+ (void)registerFormatStringDefaults;
|
|
@end
|