summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2015-10-31 18:28:11 +0800
committerAdam Bard <github@adambard.com>2015-10-31 18:28:11 +0800
commitd7b6cd51662278cc9cff8a60cc9e3a6c87445e5b (patch)
tree6d4be8e3699b3faae69dc8adce7793bb9036546c
parentb05dba46e3e89d6e160261094f42d21698bced1a (diff)
parent0717fcfdc774a877020b9d194dc40924aa5dd528 (diff)
Merge pull request #1916 from fdoxyz/patch-2
Added pragma mark information
-rw-r--r--objective-c.html.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/objective-c.html.markdown b/objective-c.html.markdown
index 05bb5c6a..1fa731e3 100644
--- a/objective-c.html.markdown
+++ b/objective-c.html.markdown
@@ -20,6 +20,10 @@ It is a general-purpose, object-oriented programming language that adds Smalltal
Multi-line comments look like this
*/
+// XCode supports pragma mark directive that improve jump bar readability
+#pragma mark Navigation Functions // New tag on jump bar named 'Navigation Functions'
+#pragma mark - Navigation Functions // Same tag, now with a separator
+
// Imports the Foundation headers with #import
// Use <> to import global files (in general frameworks)
// Use "" to import local files (from project)