-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrates SQLite.swift for DB access, updates ELHASO. Refs #37.
- Loading branch information
Showing
7 changed files
with
108 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule ELHASO-iOS-snippets
updated
21 files
+40 −0 | LICENSE.rst | |
+9 −37 | README.rst | |
+6 −6 | example/Example.xcodeproj/project.pbxproj | |
+9 −3 | example/src/View_controller.m | |
+1 −1 | src/CLLocation+ELHASO.m | |
+16 −0 | src/EHActivityView.h | |
+8 −8 | src/EHActivityView.m | |
+30 −5 | src/ELHASO.h | |
+9 −5 | src/ELHASO_cell.h | |
+19 −12 | src/ELHASO_cell.m | |
+2 −2 | src/NSArray+ELHASO.h | |
+2 −2 | src/NSArray+ELHASO.m | |
+3 −0 | src/NSDictionary+ELHASO.h | |
+13 −0 | src/NSDictionary+ELHASO.m | |
+48 −0 | src/NSNotificationCenter+ELHASO.h | |
+1 −1 | src/NSNotificationCenter+ELHASO.m | |
+0 −16 | src/UIActivity.h | |
+3 −0 | src/UIImage+ELHASO.h | |
+77 −5 | src/UIImage+ELHASO.m | |
+7 −3 | src/UILabel+ELHASO.m | |
+1 −1 | src/UIView+ELHASO.m |
Submodule SQLite.swift
added at
fde8c3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ | |
// | ||
|
||
|
||
#import "DB.h" | ||
#import "DB.h" | ||
#import <sqlite3.h> | ||
#import "SQLite-Bridging.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ | |
// | ||
|
||
|
||
#import "DB.h" | ||
#import "DB.h" | ||
#import <sqlite3.h> | ||
#import "SQLite-Bridging.h" |