Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
shokakucarrier committed Jun 23, 2019
1 parent 02de1fa commit 6b6c540
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 27 deletions.
44 changes: 21 additions & 23 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,27 @@ PODS:
- AFNetworking/UIKit (2.3.1):
- AFNetworking/NSURLConnection
- AFNetworking/NSURLSession
- Crashlytics (3.13.1):
- Fabric (~> 1.10.1)
- Crashlytics (3.13.2):
- Fabric (~> 1.10.2)
- DACircularProgress (2.2.0)
- Fabric (1.10.1)
- FMDB (2.5):
- FMDB/standard (= 2.5)
- FMDB/common (2.5)
- FMDB/standard (2.5):
- FMDB/common
- Fabric (1.10.2)
- FMDB (2.7.5):
- FMDB/standard (= 2.7.5)
- FMDB/standard (2.7.5)
- HPGrowingTextView (1.1)
- Masonry (0.6.1)
- MBProgressHUD (0.9.1)
- Masonry (1.1.0)
- MBProgressHUD (0.9.2)
- MWPhotoBrowser (1.4.1):
- DACircularProgress
- MBProgressHUD (~> 0.8)
- PSTCollectionView (~> 1.2)
- SDWebImage (~> 3.7)
- ProtocolBuffers (1.9.8)
- ProtocolBuffers (1.9.11)
- PSTCollectionView (1.2.3)
- SCLAlertView-Objective-C (0.7.3)
- SDWebImage (3.7.2):
- SDWebImage/Core (= 3.7.2)
- SDWebImage/Core (3.7.2)
- SCLAlertView-Objective-C (0.7.9)
- SDWebImage (3.8.3):
- SDWebImage/Core (= 3.8.3)
- SDWebImage/Core (3.8.3)
- SVWebViewController (1.0)
- TTTAttributedLabel (1.13.4)
- XHImageViewer (0.1.2)
Expand Down Expand Up @@ -91,18 +89,18 @@ SPEC REPOS:

SPEC CHECKSUMS:
AFNetworking: 05b9f6e3aa5ac45bc383b4bb108ef338080a26c7
Crashlytics: 5aa8e90dcbf2f34898b4f5a0037787531246cca0
Crashlytics: 611738c7847f8291a1a51084e35987b86ba6b3ee
DACircularProgress: 0f92b77239d5f3c612fc66185e2998391ac8e054
Fabric: f6f21452846788bb44595d73e9909d79d328e617
FMDB: 96e8f1bcc1329e269330f99770ad4285d9003e52
Fabric: 706c8b8098fff96c33c0db69cbf81f9c551d0d74
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
HPGrowingTextView: 88a716d97fb853bcb08a4a08e4727da17efc9b19
Masonry: 4972309f2f134de9dd312f4dc4a21359b50e6caa
MBProgressHUD: c47f2c166c126cf2ce36498d80f33e754d4e93ad
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
MBProgressHUD: 1569cf7ace17a8bac47aabfbb8580a49690386d1
MWPhotoBrowser: 2531e682860d62b8a7ba8659de02eb9040e431e5
ProtocolBuffers: 9a4a171c0c7cc8f21dd29aeca4f9ac775d84a880
ProtocolBuffers: d509225eb2ea43d9582a59e94348fcf86e2abd65
PSTCollectionView: 6749df92885353521f55279a7ce2b293762e2be4
SCLAlertView-Objective-C: 4bf9a07c8a8d1840e5174e643e16bc032239914d
SDWebImage: 71b7cdc1d1721d6a82ed62889030225f2c249e29
SCLAlertView-Objective-C: e36ab12dc1ec4ff6f932888083b21d71a3a1ad23
SDWebImage: a72e880a8fe0f7fc31efe15aaed443c074d2a80c
SVWebViewController: c36dda7326e81fcae0abf5d02bf7bbf7e41be901
TTTAttributedLabel: 0a2ac7b2dd726d32a070dafb01446026b11e624f
XHImageViewer: 7b275d2aa829e56761c30303b9d51cae086a90b9
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions ios/TeamTalk/Exist/AQGridView/AQGridViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ - (void) makeSubviewsOfView: (UIView *) aView nonOpaqueWithBackgroundColor: (UIC
{
if ( view.opaque )
{
NSMutableDictionary * info = (NSMutableDictionary *) (CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) ));
NSMutableDictionary * info = (NSMutableDictionary *)CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) );
if ( info == nil )
{
info = [NSMutableDictionary dictionaryWithCapacity: 2];
Expand All @@ -220,7 +220,7 @@ - (void) makeSubviewsOfViewOpaqueAgain: (UIView *) aView
{
for ( UIView * view in aView.subviews )
{
NSMutableDictionary * info = (NSMutableDictionary *) (CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) ));
NSMutableDictionary * info = (NSMutableDictionary *) CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) );
if ( info != nil )
{
id value = [info objectForKey: @"backgroundColor"];
Expand All @@ -245,7 +245,7 @@ - (void) highlightSubviewsOfView: (UIView *) aView
{
if ( [view respondsToSelector: @selector(setHighlighted:)] )
{
NSMutableDictionary * info = (NSMutableDictionary *) (CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) ));
NSMutableDictionary * info = (NSMutableDictionary *) CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) );
if ( info == nil )
{
info = [NSMutableDictionary dictionaryWithCapacity: 2];
Expand Down Expand Up @@ -275,7 +275,7 @@ - (void) resetHighlightForSubviewsOfView: (UIView *) aView
for ( UIView * view in aView.subviews )
{
if ([view respondsToSelector:@selector(setHighlighted:)]) {
NSMutableDictionary * info = (NSMutableDictionary *) (CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) ));
NSMutableDictionary * info = (NSMutableDictionary *) CFDictionaryGetValue( _selectionColorInfo, (__bridge void*)(view) );
if ( info != nil )
{
id value = [info objectForKey: @"highlighted"];
Expand Down

0 comments on commit 6b6c540

Please sign in to comment.