Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate code to Swift 3 #6

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c111f00
Upgrade to Swift 3
troyshu Mar 5, 2017
b7d02ba
Solve warning: use Quality of Service since "priority" is deprecated
troyshu Mar 5, 2017
54db5fd
add gitignore, commit modified podfile
troyshu Mar 5, 2017
79b0b33
commit Alamofire pod
troyshu Mar 5, 2017
bea310b
add some xcode setting ignores, from https://github.com/github/gitign…
troyshu Mar 5, 2017
acfcfcf
Constrain collection view to always fit screen
troyshu Mar 5, 2017
0b1709c
Add constraints to stock list search view to maintain responsiveness
troyshu Mar 5, 2017
208103a
fix some conflicting auto layout constraints
troyshu Mar 5, 2017
5e9f659
Revert "fix some conflicting auto layout constraints"
troyshu Mar 5, 2017
fd17f4f
put back constraint that was an IBOutlet. confirm everything's workin…
troyshu Mar 5, 2017
c7876b9
start trying to debug why chartView isn't responsive
troyshu Mar 5, 2017
5bdd84a
open up other xibs
troyshu Mar 5, 2017
2211aa4
Merge branch 'swift3' into swift3-dev
troyshu Mar 5, 2017
d451a80
programmatic constraints make the alignment of the chartView, and cha…
troyshu Mar 5, 2017
a2b3cad
price chart is properly responsive (e.g. to screen rotations, differe…
troyshu Mar 5, 2017
4ad3317
remove debug background coloring
troyshu Mar 5, 2017
2c1ae2f
Revert "remove debug background coloring"
troyshu Mar 5, 2017
efc1ca2
give price chart a little bit more of a buffer, add NSLayoutConstrain…
troyshu Mar 5, 2017
c1dc141
comment out view debug background colors
troyshu Mar 6, 2017
6f564da
time range select buttons for price chart are now properly centered
troyshu Mar 6, 2017
fb7cbdd
add code to control date range buttons like radio buttons. change dep…
troyshu Mar 6, 2017
1c75af4
select default time range button when rotate, because chart re-draws …
troyshu Mar 6, 2017
4e46b8d
programmatically style selected/unselected date range radio buttons. …
troyshu Mar 6, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#Podfile#
*~

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# SwiftStock Podfile

platform :ios, '10.0'
use_frameworks!

target 'SwiftStockExample' do
pod 'Alamofire'
pod 'Alamofire'
end

target 'SwiftStockExampleTests' do
Expand Down
8 changes: 5 additions & 3 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
PODS:
- Alamofire (3.1.4)
- Alamofire (4.4.0)

DEPENDENCIES:
- Alamofire

SPEC CHECKSUMS:
Alamofire: fbc829692f351fa1d8a31dd75fd7f7f56fea31fb
Alamofire: dc44b1600b800eb63da6a19039a0083d62a6a62d

COCOAPODS: 0.39.0
PODFILE CHECKSUM: 5a9e27e24544c657b6721b126a63de55e3b05562

COCOAPODS: 1.2.0
2 changes: 1 addition & 1 deletion Pods/Alamofire/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,799 changes: 1,252 additions & 547 deletions Pods/Alamofire/README.md

Large diffs are not rendered by default.

Loading