Skip to content

Commit

Permalink
- fixed Xcode 8 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianboboc committed Apr 15, 2017
1 parent 6f2eb04 commit 450d434
Show file tree
Hide file tree
Showing 13 changed files with 90 additions and 52 deletions.
2 changes: 1 addition & 1 deletion LBCache.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LBCache"
s.version = "1.0.6"
s.version = "1.0.7"
s.summary = "LBCache image cache framework"
s.description = <<-DESC
LBCache is an asynchronous image cache framework for iOS.
Expand Down
2 changes: 1 addition & 1 deletion LBCache/ImageOperation.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

#import <UIKit/UIKit.h>
#import "NSString+LBcategory.h"
#import "NSString+LBCategory.h"

/// kDefaultHashType is the method used to generate the hash which is used as the image name when saved on disk.
#define kDefaultHashType HashTypeSHA1
Expand Down
4 changes: 2 additions & 2 deletions LBCache/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.lucianboboc.$(PRODUCT_NAME:rfc1034identifier)</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion LBCache/LBCacheManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#endif

#import <Foundation/Foundation.h>
#import "UIImageView+LBcategory.h"
#import "UIImageView+LBCategory.h"

/// kDaysToKeepCache is the days duration the images will be kepped in cache.
#define kDaysToKeepCache 3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// NSString+LBcategory.h
// NSString+LBCategory.h
// LBCache
//
// Created by Lucian Boboc on 6/1/13.
Expand All @@ -9,7 +9,7 @@
#import <Foundation/Foundation.h>


@interface NSString (LBcategory)
@interface NSString (LBCategory)


/// HashType enum is used as an option used for the hash type.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
//
// NSString+LBcategory.m
// NSString+LBCategory.m
// LBCache
//
// Created by Lucian Boboc on 6/1/13.
// Copyright (c) 2013 Lucian Boboc. All rights reserved.
//

#import "NSString+LBcategory.h"
#import "NSString+LBCategory.h"
#import <CommonCrypto/CommonCrypto.h>

@implementation NSString (LBcategory)
@implementation NSString (LBCategory)

- (NSString*) lbHashMD5
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// UIImageView+LBcategory.h
// UIImageView+LBCategory.h
// LBCache
//
// Created by Lucian Boboc on 6/1/13.
Expand All @@ -9,7 +9,7 @@
#import <UIKit/UIKit.h>
#import "ImageOperation.h"

@interface UIImageView (LBcategory)
@interface UIImageView (LBCategory)


/// The method will start the image download and image will be set after download is complete.
Expand All @@ -23,28 +23,28 @@
///
/// @param urlString is an NSString with the url string where the image is located.
/// @param placeholderImage is a UIImage with the image that will be used as a placeholder until the image was downloaded.
/// @param options is an enum, `LBCacheImageOptions` option, which is used to decide how the image is loaded, from cache or web.
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) option;
/// @param options is an enum, `LBCacheImageOptions` options, which is used to decide how the image is loaded, from cache or web.
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) options;


/// The method will start the image download and also return it in the completion block if download was successfull.
///
/// @param urlString is an NSString with the url string where the image is located.
/// @param placeholderImage is a UIImage with the image that will be used as a placeholder until the image was downloaded.
/// @param options is an enum, `LBCacheImageOptions` option, which is used to decide how the image is loaded, from cache or web.
/// @param options is an enum, `LBCacheImageOptions` options, which is used to decide how the image is loaded, from cache or web.
/// @param completionBlock is an LBCacheOperationBlock callback which is used as a completion block for the ImageOperation.
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) option completionBlock: (LBCacheImageBlock __nullable) completionBlock;
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) options completionBlock: (LBCacheImageBlock __nullable) completionBlock;



/// The method will start the image download and also return it in the completion block if download was successfull. It also offer a progress callback option.
///
/// @param urlString is an NSString with the url string where the image is located.
/// @param placeholderImage is a UIImage with the image that will be used as a placeholder until the image was downloaded.
/// @param options is an enum, `LBCacheImageOptions` option, which is used to decide how the image is loaded, from cache or web.
/// @param options is an enum, `LBCacheImageOptions` options, which is used to decide how the image is loaded, from cache or web.
/// @param progressBlock is an ProgressBlock callback which is used to pass the percent for the ImageOperation.
/// @param completionBlock is an LBCacheOperationBlock callback which is used as a completion block for the ImageOperation.
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) option progressBlock: (ProgressBlock __nullable) progressBlock completionBlock: (LBCacheImageBlock __nullable) completionBlock;
- (void) setImageWithURLString: (NSString * __nullable) urlString placeholderImage: (UIImage * __nullable) placeholderImage options: (LBCacheImageOptions) options progressBlock: (ProgressBlock __nullable) progressBlock completionBlock: (LBCacheImageBlock __nullable) completionBlock;


/// The method will return the image object from the cache, memory or from the disk.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
//
// UIImageView+LBcategory.m
// UIImageView+LBCategory.m
// LBCache
//
// Created by Lucian Boboc on 6/1/13.
// Copyright (c) 2013 Lucian Boboc. All rights reserved.
//

#import "UIImageView+LBcategory.h"
#import "UIImageView+LBCategory.h"
#import "LBCacheManager.h"
#import <objc/runtime.h>

static char operationKey;

@implementation UIImageView (LBcategory)
@implementation UIImageView (LBCategory)

- (void) setImageWithURLString: (NSString *) urlString placeholderImage: (UIImage *) placeholderImage
{
Expand Down
66 changes: 47 additions & 19 deletions LBCache2-Demo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
670199AF1AE7C7C1003F81A8 /* ImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199A71AE7C7C1003F81A8 /* ImageOperation.m */; };
670199B01AE7C7C1003F81A8 /* LBCacheManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 670199A81AE7C7C1003F81A8 /* LBCacheManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
670199B11AE7C7C1003F81A8 /* LBCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199A91AE7C7C1003F81A8 /* LBCacheManager.m */; };
670199B21AE7C7C1003F81A8 /* NSString+LBcategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 670199AA1AE7C7C1003F81A8 /* NSString+LBcategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
670199B31AE7C7C1003F81A8 /* NSString+LBcategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199AB1AE7C7C1003F81A8 /* NSString+LBcategory.m */; };
670199B41AE7C7C1003F81A8 /* UIImageView+LBcategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 670199AC1AE7C7C1003F81A8 /* UIImageView+LBcategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
670199B51AE7C7C1003F81A8 /* UIImageView+LBcategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199AD1AE7C7C1003F81A8 /* UIImageView+LBcategory.m */; };
670199B21AE7C7C1003F81A8 /* NSString+LBCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 670199AA1AE7C7C1003F81A8 /* NSString+LBCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
670199B31AE7C7C1003F81A8 /* NSString+LBCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199AB1AE7C7C1003F81A8 /* NSString+LBCategory.m */; };
670199B41AE7C7C1003F81A8 /* UIImageView+LBCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 670199AC1AE7C7C1003F81A8 /* UIImageView+LBCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
670199B51AE7C7C1003F81A8 /* UIImageView+LBCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 670199AD1AE7C7C1003F81A8 /* UIImageView+LBCategory.m */; };
67B30CEF1AE7C13D003AD8F5 /* LBCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B30CEE1AE7C13D003AD8F5 /* LBCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
67B30CF51AE7C13D003AD8F5 /* LBCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67B30CEA1AE7C13D003AD8F5 /* LBCache.framework */; };
67B30CFE1AE7C13D003AD8F5 /* LBCacheTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 67B30CFD1AE7C13D003AD8F5 /* LBCacheTests.m */; };
Expand Down Expand Up @@ -99,10 +99,10 @@
670199A71AE7C7C1003F81A8 /* ImageOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageOperation.m; sourceTree = "<group>"; };
670199A81AE7C7C1003F81A8 /* LBCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LBCacheManager.h; sourceTree = "<group>"; };
670199A91AE7C7C1003F81A8 /* LBCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LBCacheManager.m; sourceTree = "<group>"; };
670199AA1AE7C7C1003F81A8 /* NSString+LBcategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+LBcategory.h"; sourceTree = "<group>"; };
670199AB1AE7C7C1003F81A8 /* NSString+LBcategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+LBcategory.m"; sourceTree = "<group>"; };
670199AC1AE7C7C1003F81A8 /* UIImageView+LBcategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+LBcategory.h"; sourceTree = "<group>"; };
670199AD1AE7C7C1003F81A8 /* UIImageView+LBcategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+LBcategory.m"; sourceTree = "<group>"; };
670199AA1AE7C7C1003F81A8 /* NSString+LBCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+LBCategory.h"; sourceTree = "<group>"; };
670199AB1AE7C7C1003F81A8 /* NSString+LBCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+LBCategory.m"; sourceTree = "<group>"; };
670199AC1AE7C7C1003F81A8 /* UIImageView+LBCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+LBCategory.h"; sourceTree = "<group>"; };
670199AD1AE7C7C1003F81A8 /* UIImageView+LBCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+LBCategory.m"; sourceTree = "<group>"; };
671EC89D178577AA002886A9 /* libobjc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libobjc.dylib; path = usr/lib/libobjc.dylib; sourceTree = SDKROOT; };
674F51E81AEB9B6200C97EDD /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = SOURCE_ROOT; };
679024E21AE7F30200678433 /* LICENSE.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = LICENSE.md; sourceTree = SOURCE_ROOT; };
Expand Down Expand Up @@ -222,10 +222,10 @@
670199A71AE7C7C1003F81A8 /* ImageOperation.m */,
670199A81AE7C7C1003F81A8 /* LBCacheManager.h */,
670199A91AE7C7C1003F81A8 /* LBCacheManager.m */,
670199AA1AE7C7C1003F81A8 /* NSString+LBcategory.h */,
670199AB1AE7C7C1003F81A8 /* NSString+LBcategory.m */,
670199AC1AE7C7C1003F81A8 /* UIImageView+LBcategory.h */,
670199AD1AE7C7C1003F81A8 /* UIImageView+LBcategory.m */,
670199AA1AE7C7C1003F81A8 /* NSString+LBCategory.h */,
670199AB1AE7C7C1003F81A8 /* NSString+LBCategory.m */,
670199AC1AE7C7C1003F81A8 /* UIImageView+LBCategory.h */,
670199AD1AE7C7C1003F81A8 /* UIImageView+LBCategory.m */,
67B30CEC1AE7C13D003AD8F5 /* Supporting Files */,
);
path = LBCache;
Expand Down Expand Up @@ -265,9 +265,9 @@
files = (
670199AE1AE7C7C1003F81A8 /* ImageOperation.h in Headers */,
67B30CEF1AE7C13D003AD8F5 /* LBCache.h in Headers */,
670199B21AE7C7C1003F81A8 /* NSString+LBcategory.h in Headers */,
670199B21AE7C7C1003F81A8 /* NSString+LBCategory.h in Headers */,
670199B01AE7C7C1003F81A8 /* LBCacheManager.h in Headers */,
670199B41AE7C7C1003F81A8 /* UIImageView+LBcategory.h in Headers */,
670199B41AE7C7C1003F81A8 /* UIImageView+LBCategory.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -336,7 +336,7 @@
25C65F2A175D39F100AE8FFC /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
LastUpgradeCheck = 0830;
ORGANIZATIONNAME = "Lucian Boboc";
TargetAttributes = {
67B30CE91AE7C13D003AD8F5 = {
Expand Down Expand Up @@ -414,8 +414,8 @@
files = (
670199B11AE7C7C1003F81A8 /* LBCacheManager.m in Sources */,
670199AF1AE7C7C1003F81A8 /* ImageOperation.m in Sources */,
670199B31AE7C7C1003F81A8 /* NSString+LBcategory.m in Sources */,
670199B51AE7C7C1003F81A8 /* UIImageView+LBcategory.m in Sources */,
670199B31AE7C7C1003F81A8 /* NSString+LBCategory.m in Sources */,
670199B51AE7C7C1003F81A8 /* UIImageView+LBCategory.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -474,25 +474,35 @@
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
Expand All @@ -505,18 +515,27 @@
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand All @@ -533,6 +552,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = com.lucianboboc.LBCache2;
PRODUCT_NAME = "LBCache2-Demo";
WRAPPER_EXTENSION = app;
};
Expand All @@ -548,6 +568,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = com.lucianboboc.LBCache2;
PRODUCT_NAME = "LBCache2-Demo";
WRAPPER_EXTENSION = app;
};
Expand All @@ -561,6 +582,7 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
Expand All @@ -583,6 +605,8 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = "com.lucianboboc.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand All @@ -599,6 +623,7 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
Expand All @@ -619,6 +644,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = "com.lucianboboc.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down Expand Up @@ -655,6 +681,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_BUNDLE_IDENTIFIER = "com.lucianboboc.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LBCache2-Demo.app/LBCache2-Demo";
};
Expand Down Expand Up @@ -686,6 +713,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = "com.lucianboboc.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LBCache2-Demo.app/LBCache2-Demo";
};
Expand Down
Loading

0 comments on commit 450d434

Please sign in to comment.