Skip to content

Commit

Permalink
Add some documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisballinger committed Apr 15, 2014
1 parent 4eb4a7f commit cee1337
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -21,3 +21,5 @@ DerivedData
Pods

KFSecrets.h

Docs/
8 changes: 8 additions & 0 deletions Example/KFDemoViewController.m
Expand Up @@ -227,6 +227,14 @@ - (void)didReceiveMemoryWarning
// Dispose of any resources that can be recreated.
}

- (void) scrollViewWillBeginDragging:(UIScrollView *)scrollView {
NSLog(@"begin drag");
}

- (void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
NSLog(@"end decelerate");
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)sender
{
return [self.mappings numberOfSections];
Expand Down
50 changes: 50 additions & 0 deletions Kickflip.xcodeproj/project.pbxproj
Expand Up @@ -6,6 +6,20 @@
objectVersion = 46;
objects = {

/* Begin PBXAggregateTarget section */
D9F50E0B18FC956700A71C1F /* Documentation */ = {
isa = PBXAggregateTarget;
buildConfigurationList = D9F50E0E18FC956700A71C1F /* Build configuration list for PBXAggregateTarget "Documentation" */;
buildPhases = (
D9F50E0F18FC956F00A71C1F /* ShellScript */,
);
dependencies = (
);
name = Documentation;
productName = Documentation;
};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
4BA8413B7CA949B0A7A2AF9F /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5C3B6210219445A92F3D20B /* libPods.a */; };
D945ADA4189853A80026F697 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D99912CE18984D3F00BFCBA4 /* Foundation.framework */; };
Expand Down Expand Up @@ -171,6 +185,7 @@
projectRoot = "";
targets = (
D945ADA2189853A80026F697 /* Kickflip */,
D9F50E0B18FC956700A71C1F /* Documentation */,
);
};
/* End PBXProject section */
Expand All @@ -189,6 +204,19 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
D9F50E0F18FC956F00A71C1F /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "#appledoc Xcode script\n# Start constants\ncompany=\"Kickflip\";\ncompanyID=\"io.kickflip\";\ncompanyURL=\"https://kickflip.io\";\ntarget=\"iphoneos\";\n#target=\"macosx\";\noutputPath=\"${PROJECT_DIR}/Docs\";\n# End constants\n/usr/local/bin/appledoc \\\n--project-name \"${PROJECT_NAME}\" \\\n--project-company \"${company}\" \\\n--company-id \"${companyID}\" \\\n--docset-atom-filename \"${company}.atom\" \\\n--docset-feed-url \"${companyURL}/${company}/%DOCSETATOMFILENAME\" \\\n--docset-package-url \"${companyURL}/${company}/%DOCSETPACKAGEFILENAME\" \\\n--docset-fallback-url \"${companyURL}/${company}\" \\\n--output \"${outputPath}\" \\\n--publish-docset \\\n--docset-platform-family \"${target}\" \\\n--logformat xcode \\\n--keep-intermediate-files \\\n--no-repeat-first-par \\\n--no-warn-invalid-crossref \\\n--exit-threshold 2 \\\n--ignore \"*.m\" \\\n\"${PROJECT_DIR}/Submodules/kickflip-ios-sdk\"";
};
ED2B2FA4594E4D2FB926AF71 /* Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down Expand Up @@ -358,6 +386,20 @@
};
name = Release;
};
D9F50E0C18FC956700A71C1F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
D9F50E0D18FC956700A71C1F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
Expand All @@ -379,6 +421,14 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D9F50E0E18FC956700A71C1F /* Build configuration list for PBXAggregateTarget "Documentation" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D9F50E0C18FC956700A71C1F /* Debug */,
D9F50E0D18FC956700A71C1F /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = D99912C318984D3F00BFCBA4 /* Project object */;
Expand Down

0 comments on commit cee1337

Please sign in to comment.