diff options
author | Vitaly Takmazov | 2016-07-13 22:19:21 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-07-13 22:19:21 +0300 |
commit | 7db95c4a3ace04c871283831e4ca9c2d0fefea72 (patch) | |
tree | fbd7b2017491d650cc483649186e25261bf76eb2 /Juick | |
parent | 2303b2ecb295f478b51bcbc24e4ea2679ca1fbe8 (diff) |
update selected pods
Diffstat (limited to 'Juick')
-rw-r--r-- | Juick/Juick-Info.plist | 2 | ||||
-rw-r--r-- | Juick/MessagesViewController.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Juick/Juick-Info.plist b/Juick/Juick-Info.plist index f89e3d3..b9e59e9 100644 --- a/Juick/Juick-Info.plist +++ b/Juick/Juick-Info.plist @@ -9,7 +9,7 @@ <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> <key>CFBundleIdentifier</key> - <string>com.juick.${PRODUCT_NAME:rfc1034identifier}</string> + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> diff --git a/Juick/MessagesViewController.m b/Juick/MessagesViewController.m index 7e3f01a..ff7e556 100644 --- a/Juick/MessagesViewController.m +++ b/Juick/MessagesViewController.m @@ -145,7 +145,7 @@ static NSMutableDictionary *heightsCache; [cell setMessage:msg]; if ([msg.attach length] > 0) { SDWebImageManager * manager = [SDWebImageManager sharedManager]; - [manager downloadWithURL:[NSURL URLWithString:msg.attach] options:SDWebImageContinueInBackground progress:^(NSUInteger receivedSize, long long expectedSize) { + [manager downloadWithURL:[NSURL URLWithString:msg.attach] options:SDWebImageContinueInBackground progress:^(NSInteger receivedSize, NSInteger expectedSize) { // <#code#> } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished) { [cell.attach setImage:[UIImage imageWithImage:image convertToWidth:300.0f]]; |