Fixed warnings

Fixed warnings: Recommended project settings and cast of variable
This commit is contained in:
BlueVirusX
2016-03-02 15:48:31 +01:00
parent 9d6365c25b
commit 2bcfe6fc5e
6 changed files with 25 additions and 14 deletions
@@ -228,7 +228,7 @@
[self setNeedsDisplay];
[CATransaction begin];
for (int i = 0; i < _numberOfSegments; i++) {
CAShapeLayer *layer = _segmentsLayer.sublayers[i];
CAShapeLayer *layer = (CAShapeLayer *)_segmentsLayer.sublayers[i];
CABasicAnimation *barAnimation = [self barColorAnimation];
barAnimation.fromValue = (id)layer.fillColor;
barAnimation.toValue = (id)[self colorForSegment:i].CGColor;
@@ -240,7 +240,7 @@
[self setNeedsDisplay];
[CATransaction begin];
for (int i = 0; i < _numberOfSegments; i++) {
CAShapeLayer *layer = _segmentsLayer.sublayers[i];
CAShapeLayer *layer = (CAShapeLayer *)_segmentsLayer.sublayers[i];
CABasicAnimation *barAnimation = [self barColorAnimation];
barAnimation.fromValue = (id)layer.fillColor;
barAnimation.toValue = (id)_successColor.CGColor;
@@ -252,7 +252,7 @@
[self setNeedsDisplay];
[CATransaction begin];
for (int i = 0; i < _numberOfSegments; i++) {
CAShapeLayer *layer = _segmentsLayer.sublayers[i];
CAShapeLayer *layer = (CAShapeLayer *)_segmentsLayer.sublayers[i];
CABasicAnimation *barAnimation = [self barColorAnimation];
barAnimation.fromValue = (id)layer.fillColor;
barAnimation.toValue = (id)_failureColor.CGColor;
@@ -450,7 +450,7 @@
}
//Add segment to the proper layer, and color it
CAShapeLayer *layer = _segmentsLayer.sublayers[i];
CAShapeLayer *layer = (CAShapeLayer *)_segmentsLayer.sublayers[i];
layer.path = path.CGPath;
layer.fillColor = [self colorForSegment:i].CGColor;
}
@@ -529,7 +529,7 @@
}
//Add the segment to the proper path //Add segment to the proper layer, and color it
CAShapeLayer *layer = _segmentsLayer.sublayers[i];
CAShapeLayer *layer = (CAShapeLayer *)_segmentsLayer.sublayers[i];
layer.path = path.CGPath;
if (i >= indeterminateIndex && i < indeterminateIndex + numberOfSegmentsToBeColored) {
layer.fillColor = ((UIColor *)segmentColorsPrimary[i]).CGColor;
+9 -1
View File
@@ -690,7 +690,7 @@
CA2FAF901889907300BCAEF5 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0510;
LastUpgradeCheck = 0720;
ORGANIZATIONNAME = "Brandon McQuilkin";
TargetAttributes = {
CA2FAFBB1889907300BCAEF5 = {
@@ -898,6 +898,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
@@ -961,6 +962,7 @@
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
@@ -975,6 +977,7 @@
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
@@ -996,6 +999,7 @@
"$(inherited)",
);
INFOPLIST_FILE = "M13ProgressSuiteTests/M13ProgressSuiteTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
@@ -1014,6 +1018,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
INFOPLIST_FILE = "M13ProgressSuiteTests/M13ProgressSuiteTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
@@ -1056,6 +1061,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -1082,6 +1088,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
VERSIONING_SYSTEM = "apple-generic";
@@ -1135,6 +1142,7 @@
FB2A7BF61B793E5600FE4E4A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0640"
LastUpgradeVersion = "0720"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
@@ -23,21 +23,24 @@
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
@@ -52,10 +55,10 @@
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
+1 -1
View File
@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
+1 -1
View File
@@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
@@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>