UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
FontStyleEnum.h
1//
2// FontStyleEnum.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef FontStyleEnum_h
9#define FontStyleEnum_h
10
11// FontStyleEnum.h
12#import <Foundation/Foundation.h>
13
54typedef NS_OPTIONS(NSUInteger, FontStyleEnum) {
55 FontStyleNormal = 0,
56 FontStyleBold = 1 << 0,
57 FontStyleItalic = 1 << 1
58};
59
60#endif /* FontStyleEnum_h */
此枚舉支持成員值的按位操作。