DJConstantValue.h
#import <Foundation/Foundation.h> /* App */ extern NSString * const DJAppId; extern NSString * const DJAppSecret; extern NSString * const DJAppRedirectUri; /* 通知 */ // 点击Emotion表情 extern NSString * const DJEmotionDidSelectedNotification; extern NSString * const DJEmotionDidSelctedEmotionKey; // 删除Emotion表情 extern NSString * const DJEmotionDidDeletedNotification;
DJConstantValue.m
#import <Foundation/Foundation.h> /* App */ NSString * const DJAppId = @"249054863"; NSString * const DJAppSecret = @"71d5b761bac9f377af3b938f6d89ba85"; NSString * const DJAppRedirectUri = @"https://www.baidu.com"; /* 通知 */ // 点击Emotion表情 NSString * const DJEmotionDidSelectedNotification = @"DJEmotionDidSelctedNotification"; NSString * const DJEmotionDidSelctedEmotionKey = @"emotion"; // 删除Emotion表情 NSString * const DJEmotionDidDeletedNotification = @"DJEmotionDidDeletedNotification";