Skip to content

Commit

Permalink
Update AFNetworking dependency to 2.6.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Nov 29, 2015
1 parent 4801e90 commit 3b8f148
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0710"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "66A03D2613E6F97500B514F3"
BuildableName = "libNimbusNetworkImage.a"
BlueprintName = "NimbusNetworkImage"
ReferencedContainer = "container:Nimbus.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "66A03D2613E6F97500B514F3"
BuildableName = "libNimbusNetworkImage.a"
BlueprintName = "NimbusNetworkImage"
ReferencedContainer = "container:Nimbus.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "66A03D2613E6F97500B514F3"
BuildableName = "libNimbusNetworkImage.a"
BlueprintName = "NimbusNetworkImage"
ReferencedContainer = "container:Nimbus.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
2 changes: 1 addition & 1 deletion src/networkimage/src/NINetworkImageView.m
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ - (void)setPathToNetworkImage:(NSString *)pathToNetworkImage forDisplaySize:(CGS
[self _didFailToLoadWithError:error];
}];

[requestOperation setDownloadProgressBlock:^(NSUInteger bytesRead, NSInteger totalBytesRead, NSInteger totalBytesExpectedToRead) {
[requestOperation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
if ([self.delegate respondsToSelector:@selector(networkImageView:readBytes:totalBytes:)]) {
[self.delegate networkImageView:self readBytes:totalBytesRead totalBytes:totalBytesExpectedToRead];
}
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/AFNetworking
Submodule AFNetworking updated 120 files

0 comments on commit 3b8f148

Please sign in to comment.