Commit 05694338175934bc8f8969f7b35f3aeb88d962d1

Authored by 朱林
1 parent cba0d728

no message

LiveVideoCloud/LiveVideoCloud.xcodeproj/project.pbxproj
... ... @@ -626,7 +626,8 @@
626 626 811BB6861E8107B4005C6291 /* LVCChatViewTableViewCell.h */,
627 627 811BB6871E8107B4005C6291 /* LVCChatViewTableViewCell.m */,
628 628 );
629   - path = ChatView;
  629 + name = ChatView;
  630 + path = ../ChatView;
630 631 sourceTree = "<group>";
631 632 };
632 633 812E504D1E769995004F5FCD /* CNLiveSDK */ = {
... ... @@ -1492,7 +1493,6 @@
1492 1493 D2888DA71E6EC014003A77C8 /* homeSections */ = {
1493 1494 isa = PBXGroup;
1494 1495 children = (
1495   - 811BB67B1E80F858005C6291 /* ChatView */,
1496 1496 D2888DA81E6EC014003A77C8 /* Controller */,
1497 1497 D2888DA91E6EC014003A77C8 /* Model */,
1498 1498 D2888DAA1E6EC014003A77C8 /* View */,
... ... @@ -1527,6 +1527,7 @@
1527 1527 D2888DAA1E6EC014003A77C8 /* View */ = {
1528 1528 isa = PBXGroup;
1529 1529 children = (
  1530 + 811BB67B1E80F858005C6291 /* ChatView */,
1530 1531 810B64DE1E779AE900133E15 /* LVCPlayer.h */,
1531 1532 810B64DF1E779AE900133E15 /* LVCPlayer.m */,
1532 1533 8112D42F1E7927A5002E00F6 /* LVCPlayerLoadingView.h */,
... ...
LiveVideoCloud/LiveVideoCloud/Classes/Sections/homeSections/Controller/HomeViewController.m
... ... @@ -50,13 +50,6 @@
50 50 [UGCLiveBtn addTarget:self action:@selector(UGCLiveAction) forControlEvents:UIControlEventTouchUpInside];
51 51 [self.view addSubview:UGCLiveBtn];
52 52  
53   -
54   - UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 300, SCREEN_WIDTH-20, 100)];
55   - UIImage *bgImage = [UIImage imageNamed:@"Gift box right"];
56   - bgImage = [bgImage stretchableImageWithLeftCapWidth:10 topCapHeight:imageView.height/10];
57   - imageView.image = bgImage;
58   - [self.view addSubview:imageView];
59   -
60 53 [[UIApplication sharedApplication].keyWindow addSubview:self.interactionBtn];
61 54 }
62 55  
... ...