├── Squarestock.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Aleksander.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Squarestock.xcscheme │ └── xcschememanagement.plist ├── Squarestock ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── BEMAverageLine.h │ ├── BEMAverageLine.m │ ├── BEMCircle.h │ ├── BEMCircle.m │ ├── BEMLine.h │ ├── BEMLine.m │ ├── BEMPermanentPopupView.h │ ├── BEMPermanentPopupView.m │ ├── BEMSimpleLineGraphView.h │ └── BEMSimpleLineGraphView.m ├── Company.h ├── Company.m ├── Constants.h ├── Info.plist ├── LineGraphView.h ├── LineGraphView.m ├── Price.h ├── Price.m ├── SearchViewController.h ├── SearchViewController.m ├── Stock.h ├── Stock.m ├── StockDetailViewController.h ├── StockDetailViewController.m ├── StockManager.h ├── StockManager.m ├── TickerTableViewCell.h ├── TickerTableViewCell.m └── main.m ├── design1.png ├── design2.png ├── readme.md └── squarestock.gif /Squarestock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Squarestock.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcschemes/Squarestock.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcschemes/Squarestock.xcscheme -------------------------------------------------------------------------------- /Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock.xcodeproj/xcuserdata/Aleksander.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Squarestock/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/AppDelegate.h -------------------------------------------------------------------------------- /Squarestock/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/AppDelegate.m -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Squarestock/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Squarestock/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Squarestock/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Squarestock/Classes/BEMAverageLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMAverageLine.h -------------------------------------------------------------------------------- /Squarestock/Classes/BEMAverageLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMAverageLine.m -------------------------------------------------------------------------------- /Squarestock/Classes/BEMCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMCircle.h -------------------------------------------------------------------------------- /Squarestock/Classes/BEMCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMCircle.m -------------------------------------------------------------------------------- /Squarestock/Classes/BEMLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMLine.h -------------------------------------------------------------------------------- /Squarestock/Classes/BEMLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMLine.m -------------------------------------------------------------------------------- /Squarestock/Classes/BEMPermanentPopupView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMPermanentPopupView.h -------------------------------------------------------------------------------- /Squarestock/Classes/BEMPermanentPopupView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMPermanentPopupView.m -------------------------------------------------------------------------------- /Squarestock/Classes/BEMSimpleLineGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMSimpleLineGraphView.h -------------------------------------------------------------------------------- /Squarestock/Classes/BEMSimpleLineGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Classes/BEMSimpleLineGraphView.m -------------------------------------------------------------------------------- /Squarestock/Company.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Company.h -------------------------------------------------------------------------------- /Squarestock/Company.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Company.m -------------------------------------------------------------------------------- /Squarestock/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Constants.h -------------------------------------------------------------------------------- /Squarestock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Info.plist -------------------------------------------------------------------------------- /Squarestock/LineGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/LineGraphView.h -------------------------------------------------------------------------------- /Squarestock/LineGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/LineGraphView.m -------------------------------------------------------------------------------- /Squarestock/Price.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Price.h -------------------------------------------------------------------------------- /Squarestock/Price.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Price.m -------------------------------------------------------------------------------- /Squarestock/SearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/SearchViewController.h -------------------------------------------------------------------------------- /Squarestock/SearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/SearchViewController.m -------------------------------------------------------------------------------- /Squarestock/Stock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Stock.h -------------------------------------------------------------------------------- /Squarestock/Stock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/Stock.m -------------------------------------------------------------------------------- /Squarestock/StockDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/StockDetailViewController.h -------------------------------------------------------------------------------- /Squarestock/StockDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/StockDetailViewController.m -------------------------------------------------------------------------------- /Squarestock/StockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/StockManager.h -------------------------------------------------------------------------------- /Squarestock/StockManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/StockManager.m -------------------------------------------------------------------------------- /Squarestock/TickerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/TickerTableViewCell.h -------------------------------------------------------------------------------- /Squarestock/TickerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/TickerTableViewCell.m -------------------------------------------------------------------------------- /Squarestock/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/Squarestock/main.m -------------------------------------------------------------------------------- /design1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/design1.png -------------------------------------------------------------------------------- /design2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/design2.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/readme.md -------------------------------------------------------------------------------- /squarestock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekplay/Squarestock/HEAD/squarestock.gif --------------------------------------------------------------------------------