3

我目前在一个类中定义了一些 unicode 字符(音乐扁平和锐利符号):

#import <Foundation/Foundation.h>

#define kSongsSharpSymbol [NSString stringWithFormat:@"\U0000266F"]
#define kSongsFlatSymbol [NSString stringWithFormat:@"\U0000266D"]

@interface Song : NSObject {

 //...

}

随着应用程序的增长,我认为这些类型的常量最好放在应用程序文件可用的地方,而不必包含类。

问题

  1. 我是否正确定义了 unicode 字符?它有效,但这并不意味着它是正确的
  2. 理想情况下,我应该将这些类型的常量放在哪里?

干杯和感谢!

4

1 回答 1

3

我通过像这样创建一个自定义类来解决这个问题,然后将它添加到我的预编译头文件中:

//Constants.h
#import <Foundation/Foundation.h>

FOUNDATION_EXPORT NSString *const kSongsSharpSymbol;
FOUNDATION_EXPORT NSString *const kSongsFlatSymbol;


//Constants.m
#import "Constants.h"

NSString *const kSongsSharpSymbol = @"\U0000266F";
NSString *const kSongsFlatSymbol = @"\U0000266D";

 //.pch file
#import <Availability.h>

#ifndef __IPHONE_4_0
#warning "This project uses features only available in iOS SDK 4.0 and later."
#endif

 #ifdef __OBJC__
  #import <UIKit/UIKit.h>
  #import <Foundation/Foundation.h>
  #import "Constants.h"

#endif
于 2012-06-12T21:42:47.457 回答