Skip to content

Commit bf14183

Browse files
committedNov 24, 2016
修改Appkey
1 parent 4a35778 commit bf14183

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed
 

‎LLWeChat/AppDelegate.m

+4-6
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
#import "LLAudioManager.h"
2020
#import "LLMessageThumbnailManager.h"
2121

22-
#define EaseMobAppKey @"easemob-demo#chatdemoui"
23-
2422
@interface AppDelegate ()
2523

2624
@end
@@ -102,8 +100,9 @@ - (void)showRootControllerForLoginStatus:(BOOL)successed {
102100

103101
- (void)initializeSDK {
104102

105-
//#warning 初始化环信SDK,详细内容在AppDelegate+EaseMob.m 文件中
103+
//#warning 初始化环信SDK
106104
//#warning SDK注册 APNS文件的名字, 需要与后台上传证书时的名字一一对应
105+
//#warning 本项目没有使用离线推送功能
107106
NSString *apnsCertName = nil;
108107
#if DEBUG
109108
apnsCertName = @"chatdemoui_dev";
@@ -114,11 +113,10 @@ - (void)initializeSDK {
114113
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
115114
NSString *appkey = [ud stringForKey:@"identifier_appkey"];
116115
if (!appkey) {
117-
appkey = EaseMobAppKey;
116+
appkey = EASE_MOB_APP_KEY;
118117
[ud setObject:appkey forKey:@"identifier_appkey"];
119118
}
120-
121-
119+
122120
//初始化EMClient
123121
EMOptions *options = [EMOptions optionsWithAppkey:appkey];
124122
options.apnsCertName = apnsCertName;

‎LLWeChat/Client/Chat/LLChatViewController.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ - (void)moreMenuItemDidTapped:(LLMessageBaseCell *)aCell {
11801180
self.view.backgroundColor = TABLEVIEW_BACKGROUND_COLOR;
11811181
self.chatMoreBottomBar.frame = CGRectMake(0, SCREEN_HEIGHT, SCREEN_WIDTH, 50);
11821182
[UIView animateWithDuration:0.3 animations:^{
1183-
self.chatMoreBottomBar.frame = CGRectMake(0, SCREEN_HEIGHT - MAIN_BOTTOM_TABBAR_HEIGHT, SCREEN_WIDTH, MAIN_BOTTOM_TABBAR_HEIGHT);
1183+
self.chatMoreBottomBar.frame = CGRectMake(0, SCREEN_HEIGHT - MAIN_BOTTOM_TABBAR_HEIGHT - NAVIGATION_BAR_HEIGHT, SCREEN_WIDTH, MAIN_BOTTOM_TABBAR_HEIGHT);
11841184
self.chatInputViewBottomConstraint.constant = -CGRectGetHeight(self.chatInputView.frame);
11851185
self.tableViewBottomConstraint.constant = MAIN_BOTTOM_TABBAR_HEIGHT;
11861186
[self.view layoutIfNeeded];
@@ -2137,15 +2137,15 @@ - (void)presentSightController {
21372137
[self.view addSubview:dimView];
21382138

21392139
[self addChildViewController:_sightController];
2140-
CGFloat _height = THE_GOLDEN_RATIO * SCREEN_HEIGHT;
2140+
CGFloat _height = round(THE_GOLDEN_RATIO * SCREEN_HEIGHT);
21412141
_sightController.view.frame = CGRectMake(0, SCREEN_HEIGHT - 320, SCREEN_WIDTH, _height);
21422142

21432143
self.view.backgroundColor = TABLEVIEW_BACKGROUND_COLOR;
21442144
[UIView animateWithDuration:DEFAULT_DURATION animations:^{
21452145
self.chatInputViewBottomConstraint.constant = -CGRectGetHeight(self.chatInputView.frame);
21462146
self.tableViewBottomConstraint.constant = MAIN_BOTTOM_TABBAR_HEIGHT;
21472147

2148-
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, _height - MAIN_BOTTOM_TABBAR_HEIGHT, 0);
2148+
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, _height - MAIN_BOTTOM_TABBAR_HEIGHT - NAVIGATION_BAR_HEIGHT, 0);
21492149
self.tableView.scrollIndicatorInsets = self.tableView.contentInset;
21502150
[self.view layoutIfNeeded];
21512151
[self scrollToBottom:NO];

‎LLWeChat/Data/Config/LLConfig.h

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
#import <Foundation/Foundation.h>
77
#import "LLColors.h"
88

9+
#pragma mark - 环信SDK配置 -
10+
11+
#define EASE_MOB_APP_KEY @"1172161124178919#llwechat"
12+
913
#pragma mark - ID配置 -
1014

1115
//Storyboard中ViewControllerID

0 commit comments

Comments
 (0)
Please sign in to comment.