├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CircleBar.podspec ├── CircleBar ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── SHCircleBar.swift │ └── SHCircleBarController.swift ├── Example ├── CircleBar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CircleBar-Example.xcscheme ├── CircleBar.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CircleBar │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── about.imageset │ │ │ ├── Contents.json │ │ │ └── about.pdf │ │ ├── apple.imageset │ │ │ ├── Contents.json │ │ │ └── apple.pdf │ │ ├── approval.imageset │ │ │ ├── Contents.json │ │ │ └── approval.pdf │ │ └── bell.imageset │ │ │ ├── Contents.json │ │ │ └── bell.pdf │ ├── Info.plist │ ├── Main.storyboard │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CircleBar.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── CircleBar │ │ ├── CircleBar-Info.plist │ │ ├── CircleBar-dummy.m │ │ ├── CircleBar-prefix.pch │ │ ├── CircleBar-umbrella.h │ │ ├── CircleBar.debug.xcconfig │ │ ├── CircleBar.modulemap │ │ ├── CircleBar.release.xcconfig │ │ └── CircleBar.xcconfig │ │ ├── Pods-CircleBar_Example │ │ ├── Pods-CircleBar_Example-Info.plist │ │ ├── Pods-CircleBar_Example-acknowledgements.markdown │ │ ├── Pods-CircleBar_Example-acknowledgements.plist │ │ ├── Pods-CircleBar_Example-dummy.m │ │ ├── Pods-CircleBar_Example-frameworks.sh │ │ ├── Pods-CircleBar_Example-umbrella.h │ │ ├── Pods-CircleBar_Example.debug.xcconfig │ │ ├── Pods-CircleBar_Example.modulemap │ │ └── Pods-CircleBar_Example.release.xcconfig │ │ └── Pods-CircleBar_Tests │ │ ├── Pods-CircleBar_Tests-Info.plist │ │ ├── Pods-CircleBar_Tests-acknowledgements.markdown │ │ ├── Pods-CircleBar_Tests-acknowledgements.plist │ │ ├── Pods-CircleBar_Tests-dummy.m │ │ ├── Pods-CircleBar_Tests-umbrella.h │ │ ├── Pods-CircleBar_Tests.debug.xcconfig │ │ ├── Pods-CircleBar_Tests.modulemap │ │ └── Pods-CircleBar_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore 2 | 3 | # General 4 | .DS_Store 5 | .AppleDouble 6 | .LSOverride 7 | 8 | # Icon must end with two \r 9 | Icon 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear in the root of a volume 15 | .DocumentRevisions-V100 16 | .fseventsd 17 | .Spotlight-V100 18 | .TemporaryItems 19 | .Trashes 20 | .VolumeIcon.icns 21 | .com.apple.timemachine.donotpresent 22 | 23 | # Directories potentially created on remote AFP share 24 | .AppleDB 25 | .AppleDesktop 26 | Network Trash Folder 27 | Temporary Items 28 | .apdisk 29 | 30 | ## https://github.com/github/gitignore/blob/master/Global/Xcode.gitignore 31 | 32 | ## User settings 33 | xcuserdata/ 34 | 35 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 36 | *.xcscmblueprint 37 | *.xccheckout 38 | 39 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 40 | build/ 41 | DerivedData/ 42 | *.moved-aside 43 | *.pbxuser 44 | !default.pbxuser 45 | *.mode1v3 46 | !default.mode1v3 47 | *.mode2v3 48 | !default.mode2v3 49 | *.perspectivev3 50 | !default.perspectivev3 51 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at team@softhaus.org. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Guidelines for contributing to _CircleBar_ 2 | 3 | The following is a set of guidelines for contributing to _CircleBar_ on GitHub. 4 | 5 | > First of all, thanks for contributing to CircleBar. All of the PRs are welcome. 6 | 7 | ## I want to report a problem or ask a question 8 | 9 | Before submitting a new GitHub issue, please make sure to 10 | 11 | - Check out the [readme](README). 12 | - Search for [existing GitHub issues](https://github.com/softhausHQ/CircleBar/issues). 13 | 14 | If the above doesn't help, please [submit an issue](https://github.com/softhausHQ/CircleBar/issues/new) on GitHub. 15 | 16 | ## I want to contribute to _CircleBar_ 17 | 18 | ### Things to keep in mind 19 | 20 | - Please do not change the minimum iOS version. 21 | - Always document new public methods and properties. 22 | 23 | ### Testing your local changes 24 | 25 | Before opening a pull request, please make sure your changes don't break things. 26 | 27 | - The framework and example project should build without warnings. 28 | - The example project should run without issues. 29 | 30 | ### Submitting the PR 31 | 32 | When the coding is done and you’ve finished testing your changes, you are ready to submit the PR to the [public repository](https://github.com/softhausHQ/CircleBar). We recommend the following: 33 | 34 | - Use a descriptive title. 35 | - Link the issues that are related to your PR in the body. 36 | - Be nice. 37 | 38 | ## License 39 | 40 | This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file. 41 | -------------------------------------------------------------------------------- /CircleBar.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint CircleBar.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'CircleBar' 11 | s.version = '0.8.2' 12 | s.summary = 'A fun, easy-to-use tab bar navigation controller for iOS.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = 'CircleBar is a fun tab bar navigation controller, written in Swift 4 and available through CocoaPods.' 21 | 22 | s.homepage = 'https://github.com/softhausHQ/CircleBar' 23 | s.screenshots = 'https://user-images.githubusercontent.com/7403338/53284076-884de700-3757-11e9-9185-33a67e7b3ba0.gif' 24 | s.license = { :type => 'MIT', :file => 'LICENSE' } 25 | s.author = { 'softhaus' => 'adi@softhaus.org' } 26 | s.source = { :git => 'https://github.com/softhausHQ/CircleBar.git', :tag => s.version.to_s } 27 | s.social_media_url = 'https://twitter.com/softhausHQ' 28 | 29 | s.ios.deployment_target = '12.0' 30 | s.swift_version = '4.2' 31 | s.source_files = 'CircleBar/Classes/*' 32 | 33 | # s.resource_bundles = { 34 | # 'CircleBar' => ['CircleBar/Assets/*.png'] 35 | # } 36 | 37 | # s.public_header_files = 'Pod/Classes/**/*.h' 38 | # s.frameworks = 'UIKit', 'MapKit' 39 | # s.dependency 'AFNetworking', '~> 2.3' 40 | end 41 | -------------------------------------------------------------------------------- /CircleBar/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/CircleBar/Assets/.gitkeep -------------------------------------------------------------------------------- /CircleBar/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/CircleBar/Classes/.gitkeep -------------------------------------------------------------------------------- /CircleBar/Classes/SHCircleBar.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SHCircleBar.swift 3 | // SHCircleBar 4 | // 5 | // Created by Adrian Perțe on 19/02/2019. 6 | // Copyright © 2019 softhaus. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable class SHCircleBar: UITabBar { 12 | private var tabWidth: CGFloat = 0 13 | private var index: CGFloat = 0 { 14 | willSet{ 15 | self.previousIndex = index 16 | } 17 | } 18 | private var animated = false 19 | private var selectedImage: UIImage? 20 | private var previousIndex: CGFloat = 0 21 | 22 | override init(frame: CGRect) { 23 | super.init(frame: frame) 24 | customInit() 25 | } 26 | 27 | public required init?(coder aDecoder: NSCoder) { 28 | super.init(coder: aDecoder) 29 | customInit() 30 | 31 | } 32 | 33 | open override func draw(_ rect: CGRect) { 34 | drawCurve() 35 | } 36 | } 37 | 38 | extension SHCircleBar { 39 | 40 | func select(itemAt: Int, animated: Bool) { 41 | self.index = CGFloat(itemAt) 42 | self.animated = animated 43 | self.selectedImage = self.selectedItem?.selectedImage 44 | self.selectedItem?.selectedImage = nil 45 | self.setNeedsDisplay() 46 | } 47 | 48 | private func drawCurve() { 49 | let fillColor: UIColor = .white 50 | tabWidth = self.bounds.width / CGFloat(self.items!.count) 51 | let bezPath = drawPath(for: index) 52 | 53 | bezPath.close() 54 | fillColor.setFill() 55 | bezPath.fill() 56 | let mask = CAShapeLayer() 57 | mask.fillRule = .evenOdd 58 | mask.fillColor = UIColor.white.cgColor 59 | mask.path = bezPath.cgPath 60 | if (self.animated) { 61 | let bezAnimation = CABasicAnimation(keyPath: "path") 62 | let bezPathFrom = drawPath(for: previousIndex) 63 | bezAnimation.toValue = bezPath.cgPath 64 | bezAnimation.fromValue = bezPathFrom.cgPath 65 | bezAnimation.duration = 0.3 66 | bezAnimation.timingFunction = CAMediaTimingFunction(name: .easeInEaseOut) 67 | mask.add(bezAnimation, forKey: nil) 68 | } 69 | self.layer.mask = mask 70 | } 71 | 72 | private func customInit(){ 73 | self.tintColor = .white 74 | self.barTintColor = .white 75 | self.backgroundColor = .white 76 | } 77 | 78 | private func drawPath(for index: CGFloat) -> UIBezierPath { 79 | let bezPath = UIBezierPath() 80 | 81 | let tabHeight: CGFloat = tabWidth 82 | 83 | let leftPoint = CGPoint(x: (index * tabWidth), y: 0) 84 | let leftPointCurveUp = CGPoint( 85 | x: ((tabWidth * index) + tabWidth / 5), 86 | y: 0) 87 | let leftPointCurveDown = CGPoint( 88 | x: ((index * tabWidth) - tabWidth*0.2) + tabWidth / 4, 89 | y: tabHeight*0.40) 90 | 91 | let middlePoint = CGPoint( 92 | x: (tabWidth * index) + tabWidth / 2, 93 | y: tabHeight*0.4) 94 | let middlePointCurveDown = CGPoint( 95 | x: (((index * tabWidth) - tabWidth*0.2) + tabWidth / 10) + tabWidth, 96 | y: tabHeight*0.40) 97 | let middlePointCurveUp = CGPoint( 98 | x: (((tabWidth * index) + tabWidth) - tabWidth / 5), 99 | y: 0) 100 | 101 | let rightPoint = CGPoint(x: (tabWidth * index) + tabWidth, y: 0) 102 | bezPath.move(to: leftPoint) 103 | bezPath.addCurve(to: middlePoint, controlPoint1: leftPointCurveUp, controlPoint2: leftPointCurveDown) 104 | bezPath.addCurve(to: rightPoint, controlPoint1: middlePointCurveDown, controlPoint2: middlePointCurveUp) 105 | 106 | bezPath.append(UIBezierPath(rect: self.bounds)) 107 | 108 | return bezPath 109 | } 110 | } 111 | 112 | -------------------------------------------------------------------------------- /CircleBar/Classes/SHCircleBarController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SHCircleBarController.swift 3 | // SHCircleBar 4 | // 5 | // Created by Adrian Perțe on 19/02/2019. 6 | // Copyright © 2019 softhaus. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SHCircleBarController: UITabBarController { 12 | 13 | private var circleView : UIView! 14 | private var circleImageView: UIImageView! 15 | 16 | public override var selectedViewController: UIViewController? { 17 | willSet { 18 | guard let newValue = newValue, 19 | let tabBar = tabBar as? SHCircleBar, 20 | let index = viewControllers?.firstIndex(of: newValue) 21 | else { return } 22 | updateCircle(index: index) 23 | tabBar.select(itemAt: index, animated: true) 24 | } 25 | } 26 | 27 | public override var selectedIndex: Int { 28 | willSet { 29 | guard let tabBar = tabBar as? SHCircleBar else { return } 30 | updateCircle(index: newValue) 31 | tabBar.select(itemAt: newValue, animated: true) 32 | } 33 | } 34 | 35 | private var _barHeight: CGFloat = 74 36 | public var barHeight: CGFloat { 37 | get { 38 | if #available(iOS 11.0, *) { 39 | return _barHeight + view.safeAreaInsets.bottom 40 | } else { return _barHeight } 41 | } 42 | set { 43 | _barHeight = newValue 44 | updateTabBarFrame() 45 | } 46 | } 47 | 48 | open override func viewDidLoad() { 49 | super.viewDidLoad() 50 | let tabBar = SHCircleBar() 51 | self.setValue(tabBar, forKey: "tabBar") 52 | 53 | addCirleView() 54 | } 55 | 56 | open override func viewWillAppear(_ animated: Bool) { 57 | super.viewWillAppear(animated) 58 | circleImageView.image = self.tabBar.selectedItem?.image ?? self.tabBar.items?.first?.image 59 | } 60 | 61 | open override func viewWillLayoutSubviews() { 62 | super.viewWillLayoutSubviews() 63 | updateTabBarFrame() 64 | } 65 | 66 | open override func viewSafeAreaInsetsDidChange() { 67 | if #available(iOS 11.0, *) { 68 | super.viewSafeAreaInsetsDidChange() 69 | } 70 | updateTabBarFrame() 71 | } 72 | 73 | open override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) { 74 | guard let index = tabBar.items?.firstIndex(of: item) else { return } 75 | updateCircle(index: index) 76 | } 77 | 78 | } 79 | 80 | extension SHCircleBarController { 81 | public func updateCircle(index: Int) { 82 | guard let items = tabBar.items, 83 | let vcs = viewControllers, 84 | index < items.count, 85 | index < vcs.count, 86 | index != selectedIndex else { return } 87 | 88 | let item = items[index] 89 | let controller = vcs[index] 90 | 91 | let tabWidth = self.view.bounds.width / CGFloat(items.count) 92 | let circleWidth = self.circleView.bounds.width 93 | 94 | UIView.animate(withDuration: 0.3) { [weak self] in 95 | guard let `self` = self else { return } 96 | self.circleView.frame = CGRect( 97 | x: (tabWidth * CGFloat(index) + tabWidth / 2 - circleWidth*0.5), 98 | y: self.circleView.frame.minY, 99 | width: circleWidth, 100 | height: circleWidth) 101 | } 102 | 103 | UIView.animate(withDuration: 0.15) { [weak self] in 104 | self?.circleImageView.alpha = 0 105 | } completion: { [weak self] (_) in 106 | self?.circleImageView.image = item.image 107 | UIView.animate(withDuration: 0.15, animations: { [weak self] in 108 | self?.circleImageView.alpha = 1 109 | }) 110 | } 111 | delegate?.tabBarController?(self, didSelect: controller) 112 | } 113 | 114 | fileprivate func updateTabBarFrame() { 115 | var tabFrame = self.tabBar.frame 116 | tabFrame.size.height = barHeight 117 | tabFrame.origin.y = self.view.frame.size.height - barHeight 118 | self.tabBar.frame = tabFrame 119 | tabBar.setNeedsLayout() 120 | } 121 | 122 | fileprivate func addCirleView() { 123 | let tabWidth = self.view.bounds.width / CGFloat(self.tabBar.items?.count ?? 4) 124 | let circleViewWidth = tabWidth*0.5 125 | let circleViewRadius = circleViewWidth*0.5 126 | 127 | self.circleView = UIView(frame: .zero) 128 | circleView.layer.cornerRadius = circleViewRadius 129 | circleView.backgroundColor = .white 130 | 131 | self.circleImageView = UIImageView(frame: .zero) 132 | circleImageView.layer.cornerRadius = circleViewRadius 133 | circleImageView.isUserInteractionEnabled = false 134 | circleImageView.contentMode = .center 135 | 136 | circleView.addSubview(circleImageView) 137 | self.view.addSubview(circleView) 138 | 139 | circleView.layer.shadowOffset = CGSize(width: 0, height: 0) 140 | circleView.layer.shadowRadius = 2 141 | circleView.layer.shadowColor = UIColor.black.cgColor 142 | circleView.layer.shadowOpacity = 0.15 143 | 144 | let bottomPadding = getBottomPadding() 145 | 146 | circleView.frame = CGRect( 147 | x: tabWidth / 2 - tabWidth*0.25, 148 | y: self.tabBar.frame.origin.y - bottomPadding - circleViewWidth*0.5, 149 | width: circleViewWidth, 150 | height: circleViewWidth) 151 | circleImageView.frame = self.circleView.bounds 152 | } 153 | 154 | fileprivate func getBottomPadding() -> CGFloat { 155 | if #available(iOS 13.0, *) { 156 | let window = UIApplication.shared.windows[0] 157 | return window.safeAreaInsets.bottom 158 | } else if #available(iOS 11.0, *) { 159 | return view.safeAreaInsets.bottom 160 | } else { return 0 } 161 | } 162 | } 163 | -------------------------------------------------------------------------------- /Example/CircleBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 13 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 14 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 15 | 82704DDF2220DE2D008AF50C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 82704DDE2220DE2D008AF50C /* Main.storyboard */; }; 16 | A718E56094721212B8877BDC /* Pods_CircleBar_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F7AA60E30091B02E2B8F377 /* Pods_CircleBar_Tests.framework */; }; 17 | F4FF41E82C9BDC9EBDC62EB0 /* Pods_CircleBar_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA28F648DFDFA2BCDABA97C0 /* Pods_CircleBar_Example.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = CircleBar; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 22DB8C4E5A0983400E7996EE /* Pods-CircleBar_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleBar_Example.release.xcconfig"; path = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.release.xcconfig"; sourceTree = ""; }; 32 | 54C51D19CEF3FB8593CEA3C2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 33 | 5D0F746CE4C3541C3CCE8A0B /* Pods-CircleBar_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleBar_Example.debug.xcconfig"; path = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.debug.xcconfig"; sourceTree = ""; }; 34 | 607FACD01AFB9204008FA782 /* CircleBar_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CircleBar_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 39 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 40 | 607FACE51AFB9204008FA782 /* CircleBar_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CircleBar_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 43 | 64804F4457C7324CACEEAC0A /* Pods-CircleBar_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleBar_Tests.debug.xcconfig"; path = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.debug.xcconfig"; sourceTree = ""; }; 44 | 82704DDE2220DE2D008AF50C /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 45 | 8EC87CAD00F3EEC2788B6796 /* CircleBar.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CircleBar.podspec; path = ../CircleBar.podspec; sourceTree = ""; wrapsLines = 0; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 46 | 8F7AA60E30091B02E2B8F377 /* Pods_CircleBar_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleBar_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | A9EAC8BF1B3E81D45124A77A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 48 | C98010CD4B98A08627A2B7B6 /* Pods-CircleBar_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CircleBar_Tests.release.xcconfig"; path = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.release.xcconfig"; sourceTree = ""; }; 49 | DA28F648DFDFA2BCDABA97C0 /* Pods_CircleBar_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CircleBar_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | F4FF41E82C9BDC9EBDC62EB0 /* Pods_CircleBar_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | A718E56094721212B8877BDC /* Pods_CircleBar_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 607FACC71AFB9204008FA782 = { 73 | isa = PBXGroup; 74 | children = ( 75 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 76 | 607FACD21AFB9204008FA782 /* Example for CircleBar */, 77 | 607FACE81AFB9204008FA782 /* Tests */, 78 | 607FACD11AFB9204008FA782 /* Products */, 79 | F90F2050E4A3BE7CF81AEA34 /* Pods */, 80 | FC82B66320793DF6E216D2B1 /* Frameworks */, 81 | ); 82 | sourceTree = ""; 83 | }; 84 | 607FACD11AFB9204008FA782 /* Products */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 607FACD01AFB9204008FA782 /* CircleBar_Example.app */, 88 | 607FACE51AFB9204008FA782 /* CircleBar_Tests.xctest */, 89 | ); 90 | name = Products; 91 | sourceTree = ""; 92 | }; 93 | 607FACD21AFB9204008FA782 /* Example for CircleBar */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 97 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 98 | 82704DDE2220DE2D008AF50C /* Main.storyboard */, 99 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 100 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 101 | 607FACD31AFB9204008FA782 /* Supporting Files */, 102 | ); 103 | name = "Example for CircleBar"; 104 | path = CircleBar; 105 | sourceTree = ""; 106 | }; 107 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 607FACD41AFB9204008FA782 /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | 607FACE81AFB9204008FA782 /* Tests */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 119 | 607FACE91AFB9204008FA782 /* Supporting Files */, 120 | ); 121 | path = Tests; 122 | sourceTree = ""; 123 | }; 124 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEA1AFB9204008FA782 /* Info.plist */, 128 | ); 129 | name = "Supporting Files"; 130 | sourceTree = ""; 131 | }; 132 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 8EC87CAD00F3EEC2788B6796 /* CircleBar.podspec */, 136 | 54C51D19CEF3FB8593CEA3C2 /* README.md */, 137 | A9EAC8BF1B3E81D45124A77A /* LICENSE */, 138 | ); 139 | name = "Podspec Metadata"; 140 | sourceTree = ""; 141 | }; 142 | F90F2050E4A3BE7CF81AEA34 /* Pods */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 5D0F746CE4C3541C3CCE8A0B /* Pods-CircleBar_Example.debug.xcconfig */, 146 | 22DB8C4E5A0983400E7996EE /* Pods-CircleBar_Example.release.xcconfig */, 147 | 64804F4457C7324CACEEAC0A /* Pods-CircleBar_Tests.debug.xcconfig */, 148 | C98010CD4B98A08627A2B7B6 /* Pods-CircleBar_Tests.release.xcconfig */, 149 | ); 150 | path = Pods; 151 | sourceTree = ""; 152 | }; 153 | FC82B66320793DF6E216D2B1 /* Frameworks */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | DA28F648DFDFA2BCDABA97C0 /* Pods_CircleBar_Example.framework */, 157 | 8F7AA60E30091B02E2B8F377 /* Pods_CircleBar_Tests.framework */, 158 | ); 159 | name = Frameworks; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* CircleBar_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleBar_Example" */; 168 | buildPhases = ( 169 | 669FBB01EC6B7F660C64A2D6 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 9154F7D58EFB52483200870A /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = CircleBar_Example; 180 | productName = CircleBar; 181 | productReference = 607FACD01AFB9204008FA782 /* CircleBar_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* CircleBar_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleBar_Tests" */; 187 | buildPhases = ( 188 | 05A109210DFF71A19FDD5D6B /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = CircleBar_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* CircleBar_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 1010; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | DevelopmentTeam = M39CJAQV5X; 216 | LastSwiftMigration = 0900; 217 | }; 218 | 607FACE41AFB9204008FA782 = { 219 | CreatedOnToolsVersion = 6.3.1; 220 | DevelopmentTeam = M39CJAQV5X; 221 | LastSwiftMigration = 0900; 222 | TestTargetID = 607FACCF1AFB9204008FA782; 223 | }; 224 | }; 225 | }; 226 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CircleBar" */; 227 | compatibilityVersion = "Xcode 3.2"; 228 | developmentRegion = English; 229 | hasScannedForEncodings = 0; 230 | knownRegions = ( 231 | en, 232 | Base, 233 | ); 234 | mainGroup = 607FACC71AFB9204008FA782; 235 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 236 | projectDirPath = ""; 237 | projectRoot = ""; 238 | targets = ( 239 | 607FACCF1AFB9204008FA782 /* CircleBar_Example */, 240 | 607FACE41AFB9204008FA782 /* CircleBar_Tests */, 241 | ); 242 | }; 243 | /* End PBXProject section */ 244 | 245 | /* Begin PBXResourcesBuildPhase section */ 246 | 607FACCE1AFB9204008FA782 /* Resources */ = { 247 | isa = PBXResourcesBuildPhase; 248 | buildActionMask = 2147483647; 249 | files = ( 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | 82704DDF2220DE2D008AF50C /* Main.storyboard in Resources */, 253 | ); 254 | runOnlyForDeploymentPostprocessing = 0; 255 | }; 256 | 607FACE31AFB9204008FA782 /* Resources */ = { 257 | isa = PBXResourcesBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | ); 261 | runOnlyForDeploymentPostprocessing = 0; 262 | }; 263 | /* End PBXResourcesBuildPhase section */ 264 | 265 | /* Begin PBXShellScriptBuildPhase section */ 266 | 05A109210DFF71A19FDD5D6B /* [CP] Check Pods Manifest.lock */ = { 267 | isa = PBXShellScriptBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | ); 271 | inputFileListPaths = ( 272 | ); 273 | inputPaths = ( 274 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 275 | "${PODS_ROOT}/Manifest.lock", 276 | ); 277 | name = "[CP] Check Pods Manifest.lock"; 278 | outputFileListPaths = ( 279 | ); 280 | outputPaths = ( 281 | "$(DERIVED_FILE_DIR)/Pods-CircleBar_Tests-checkManifestLockResult.txt", 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | shellPath = /bin/sh; 285 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 286 | showEnvVarsInLog = 0; 287 | }; 288 | 669FBB01EC6B7F660C64A2D6 /* [CP] Check Pods Manifest.lock */ = { 289 | isa = PBXShellScriptBuildPhase; 290 | buildActionMask = 2147483647; 291 | files = ( 292 | ); 293 | inputFileListPaths = ( 294 | ); 295 | inputPaths = ( 296 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 297 | "${PODS_ROOT}/Manifest.lock", 298 | ); 299 | name = "[CP] Check Pods Manifest.lock"; 300 | outputFileListPaths = ( 301 | ); 302 | outputPaths = ( 303 | "$(DERIVED_FILE_DIR)/Pods-CircleBar_Example-checkManifestLockResult.txt", 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | shellPath = /bin/sh; 307 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 308 | showEnvVarsInLog = 0; 309 | }; 310 | 9154F7D58EFB52483200870A /* [CP] Embed Pods Frameworks */ = { 311 | isa = PBXShellScriptBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | ); 315 | inputPaths = ( 316 | "${PODS_ROOT}/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-frameworks.sh", 317 | "${BUILT_PRODUCTS_DIR}/CircleBar/CircleBar.framework", 318 | ); 319 | name = "[CP] Embed Pods Frameworks"; 320 | outputPaths = ( 321 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CircleBar.framework", 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | shellPath = /bin/sh; 325 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-frameworks.sh\"\n"; 326 | showEnvVarsInLog = 0; 327 | }; 328 | /* End PBXShellScriptBuildPhase section */ 329 | 330 | /* Begin PBXSourcesBuildPhase section */ 331 | 607FACCC1AFB9204008FA782 /* Sources */ = { 332 | isa = PBXSourcesBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 336 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | 607FACE11AFB9204008FA782 /* Sources */ = { 341 | isa = PBXSourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | }; 348 | /* End PBXSourcesBuildPhase section */ 349 | 350 | /* Begin PBXTargetDependency section */ 351 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 352 | isa = PBXTargetDependency; 353 | target = 607FACCF1AFB9204008FA782 /* CircleBar_Example */; 354 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 355 | }; 356 | /* End PBXTargetDependency section */ 357 | 358 | /* Begin PBXVariantGroup section */ 359 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 360 | isa = PBXVariantGroup; 361 | children = ( 362 | 607FACDF1AFB9204008FA782 /* Base */, 363 | ); 364 | name = LaunchScreen.xib; 365 | sourceTree = ""; 366 | }; 367 | /* End PBXVariantGroup section */ 368 | 369 | /* Begin XCBuildConfiguration section */ 370 | 607FACED1AFB9204008FA782 /* Debug */ = { 371 | isa = XCBuildConfiguration; 372 | buildSettings = { 373 | ALWAYS_SEARCH_USER_PATHS = NO; 374 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 375 | CLANG_CXX_LIBRARY = "libc++"; 376 | CLANG_ENABLE_MODULES = YES; 377 | CLANG_ENABLE_OBJC_ARC = YES; 378 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 379 | CLANG_WARN_BOOL_CONVERSION = YES; 380 | CLANG_WARN_COMMA = YES; 381 | CLANG_WARN_CONSTANT_CONVERSION = YES; 382 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 383 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 384 | CLANG_WARN_EMPTY_BODY = YES; 385 | CLANG_WARN_ENUM_CONVERSION = YES; 386 | CLANG_WARN_INFINITE_RECURSION = YES; 387 | CLANG_WARN_INT_CONVERSION = YES; 388 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 389 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 390 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 391 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 392 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 393 | CLANG_WARN_STRICT_PROTOTYPES = YES; 394 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 395 | CLANG_WARN_UNREACHABLE_CODE = YES; 396 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 397 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 398 | COPY_PHASE_STRIP = NO; 399 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 400 | ENABLE_STRICT_OBJC_MSGSEND = YES; 401 | ENABLE_TESTABILITY = YES; 402 | GCC_C_LANGUAGE_STANDARD = gnu99; 403 | GCC_DYNAMIC_NO_PIC = NO; 404 | GCC_NO_COMMON_BLOCKS = YES; 405 | GCC_OPTIMIZATION_LEVEL = 0; 406 | GCC_PREPROCESSOR_DEFINITIONS = ( 407 | "DEBUG=1", 408 | "$(inherited)", 409 | ); 410 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 411 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 412 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 413 | GCC_WARN_UNDECLARED_SELECTOR = YES; 414 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 415 | GCC_WARN_UNUSED_FUNCTION = YES; 416 | GCC_WARN_UNUSED_VARIABLE = YES; 417 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 418 | MTL_ENABLE_DEBUG_INFO = YES; 419 | ONLY_ACTIVE_ARCH = YES; 420 | SDKROOT = iphoneos; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 422 | SWIFT_VERSION = 4.2; 423 | }; 424 | name = Debug; 425 | }; 426 | 607FACEE1AFB9204008FA782 /* Release */ = { 427 | isa = XCBuildConfiguration; 428 | buildSettings = { 429 | ALWAYS_SEARCH_USER_PATHS = NO; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_NS_ASSERTIONS = NO; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_NO_COMMON_BLOCKS = YES; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 467 | MTL_ENABLE_DEBUG_INFO = NO; 468 | SDKROOT = iphoneos; 469 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 470 | SWIFT_VERSION = 4.2; 471 | VALIDATE_PRODUCT = YES; 472 | }; 473 | name = Release; 474 | }; 475 | 607FACF01AFB9204008FA782 /* Debug */ = { 476 | isa = XCBuildConfiguration; 477 | baseConfigurationReference = 5D0F746CE4C3541C3CCE8A0B /* Pods-CircleBar_Example.debug.xcconfig */; 478 | buildSettings = { 479 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 480 | DEVELOPMENT_TEAM = M39CJAQV5X; 481 | INFOPLIST_FILE = CircleBar/Info.plist; 482 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 483 | MODULE_NAME = ExampleApp; 484 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 485 | PRODUCT_NAME = "$(TARGET_NAME)"; 486 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 487 | SWIFT_VERSION = 4.2; 488 | }; 489 | name = Debug; 490 | }; 491 | 607FACF11AFB9204008FA782 /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | baseConfigurationReference = 22DB8C4E5A0983400E7996EE /* Pods-CircleBar_Example.release.xcconfig */; 494 | buildSettings = { 495 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 496 | DEVELOPMENT_TEAM = M39CJAQV5X; 497 | INFOPLIST_FILE = CircleBar/Info.plist; 498 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 499 | MODULE_NAME = ExampleApp; 500 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 501 | PRODUCT_NAME = "$(TARGET_NAME)"; 502 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 503 | SWIFT_VERSION = 4.2; 504 | }; 505 | name = Release; 506 | }; 507 | 607FACF31AFB9204008FA782 /* Debug */ = { 508 | isa = XCBuildConfiguration; 509 | baseConfigurationReference = 64804F4457C7324CACEEAC0A /* Pods-CircleBar_Tests.debug.xcconfig */; 510 | buildSettings = { 511 | DEVELOPMENT_TEAM = M39CJAQV5X; 512 | FRAMEWORK_SEARCH_PATHS = ( 513 | "$(SDKROOT)/Developer/Library/Frameworks", 514 | "$(inherited)", 515 | ); 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "DEBUG=1", 518 | "$(inherited)", 519 | ); 520 | INFOPLIST_FILE = Tests/Info.plist; 521 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 522 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 523 | PRODUCT_NAME = "$(TARGET_NAME)"; 524 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 525 | SWIFT_VERSION = 4.2; 526 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CircleBar_Example.app/CircleBar_Example"; 527 | }; 528 | name = Debug; 529 | }; 530 | 607FACF41AFB9204008FA782 /* Release */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = C98010CD4B98A08627A2B7B6 /* Pods-CircleBar_Tests.release.xcconfig */; 533 | buildSettings = { 534 | DEVELOPMENT_TEAM = M39CJAQV5X; 535 | FRAMEWORK_SEARCH_PATHS = ( 536 | "$(SDKROOT)/Developer/Library/Frameworks", 537 | "$(inherited)", 538 | ); 539 | INFOPLIST_FILE = Tests/Info.plist; 540 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 541 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 542 | PRODUCT_NAME = "$(TARGET_NAME)"; 543 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 544 | SWIFT_VERSION = 4.2; 545 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CircleBar_Example.app/CircleBar_Example"; 546 | }; 547 | name = Release; 548 | }; 549 | /* End XCBuildConfiguration section */ 550 | 551 | /* Begin XCConfigurationList section */ 552 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CircleBar" */ = { 553 | isa = XCConfigurationList; 554 | buildConfigurations = ( 555 | 607FACED1AFB9204008FA782 /* Debug */, 556 | 607FACEE1AFB9204008FA782 /* Release */, 557 | ); 558 | defaultConfigurationIsVisible = 0; 559 | defaultConfigurationName = Release; 560 | }; 561 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleBar_Example" */ = { 562 | isa = XCConfigurationList; 563 | buildConfigurations = ( 564 | 607FACF01AFB9204008FA782 /* Debug */, 565 | 607FACF11AFB9204008FA782 /* Release */, 566 | ); 567 | defaultConfigurationIsVisible = 0; 568 | defaultConfigurationName = Release; 569 | }; 570 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CircleBar_Tests" */ = { 571 | isa = XCConfigurationList; 572 | buildConfigurations = ( 573 | 607FACF31AFB9204008FA782 /* Debug */, 574 | 607FACF41AFB9204008FA782 /* Release */, 575 | ); 576 | defaultConfigurationIsVisible = 0; 577 | defaultConfigurationName = Release; 578 | }; 579 | /* End XCConfigurationList section */ 580 | }; 581 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 582 | } 583 | -------------------------------------------------------------------------------- /Example/CircleBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/CircleBar.xcodeproj/xcshareddata/xcschemes/CircleBar-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/CircleBar.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/CircleBar.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/CircleBar/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // CircleBar 4 | // 5 | // Created by Perțe Adrian on 02/23/2019. 6 | // Copyright (c) 2019 softhaus. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/CircleBar/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/about.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "about.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/about.imageset/about.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/Example/CircleBar/Images.xcassets/about.imageset/about.pdf -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/apple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "apple.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/apple.imageset/apple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/Example/CircleBar/Images.xcassets/apple.imageset/apple.pdf -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/approval.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "approval.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/approval.imageset/approval.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/Example/CircleBar/Images.xcassets/approval.imageset/approval.pdf -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/bell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bell.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/CircleBar/Images.xcassets/bell.imageset/bell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softhausHQ/CircleBar/b5a114a56d6942f9a8372cc7c28898b045afdf98/Example/CircleBar/Images.xcassets/bell.imageset/bell.pdf -------------------------------------------------------------------------------- /Example/CircleBar/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/CircleBar/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /Example/CircleBar/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // CircleBar 4 | // 5 | // Created by Perțe Adrian on 02/23/2019. 6 | // Copyright (c) 2019 softhaus. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'CircleBar_Example' do 4 | pod 'CircleBar', :path => '../' 5 | 6 | target 'CircleBar_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CircleBar (0.8.2) 3 | 4 | DEPENDENCIES: 5 | - CircleBar (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CircleBar: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | CircleBar: 5b882eb3870de5bbda42bef1b2ec6c5c533497db 13 | 14 | PODFILE CHECKSUM: c85bb2d45d7d4fdfeeaa049dfcacccb3a811d08b 15 | 16 | COCOAPODS: 1.10.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CircleBar.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CircleBar", 3 | "version": "0.8.2", 4 | "summary": "A fun, easy-to-use tab bar navigation controller for iOS.", 5 | "description": "CircleBar is a fun tab bar navigation controller, written in Swift 4 and available through CocoaPods.", 6 | "homepage": "https://github.com/softhausHQ/CircleBar", 7 | "screenshots": "https://user-images.githubusercontent.com/7403338/53284076-884de700-3757-11e9-9185-33a67e7b3ba0.gif", 8 | "license": { 9 | "type": "MIT", 10 | "file": "LICENSE" 11 | }, 12 | "authors": { 13 | "softhaus": "adi@softhaus.org" 14 | }, 15 | "source": { 16 | "git": "https://github.com/softhausHQ/CircleBar.git", 17 | "tag": "0.8.2" 18 | }, 19 | "social_media_url": "https://twitter.com/softhausHQ", 20 | "platforms": { 21 | "ios": "12.0" 22 | }, 23 | "swift_versions": "4.2", 24 | "source_files": "CircleBar/Classes/*", 25 | "swift_version": "4.2" 26 | } 27 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - CircleBar (0.8.2) 3 | 4 | DEPENDENCIES: 5 | - CircleBar (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | CircleBar: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | CircleBar: 5b882eb3870de5bbda42bef1b2ec6c5c533497db 13 | 14 | PODFILE CHECKSUM: c85bb2d45d7d4fdfeeaa049dfcacccb3a811d08b 15 | 16 | COCOAPODS: 1.10.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0F9F5763FAA9715E59EFB0EDA02BB1BA /* Pods-CircleBar_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F392DCD9A7B18E63D64D0C9BB7DD842 /* Pods-CircleBar_Example-dummy.m */; }; 11 | 363326ACD8EFCD11A70C9E00FEDC7491 /* Pods-CircleBar_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2355F78B07F14FBCFA684FF2B5FC0D /* Pods-CircleBar_Tests-dummy.m */; }; 12 | 52C00837E96D161CA2D012613B22434C /* Pods-CircleBar_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F11433A87A706E2640806CDB1958BD60 /* Pods-CircleBar_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 7CCE43A9C0B6AAB932CA7400616B867D /* CircleBar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 49A52BEF2E3FC6C7C7890877003821D8 /* CircleBar-dummy.m */; }; 14 | 8F02E64C9A44615B7FBE331E6C95BDC0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 15 | 97F3A4826F381F62F380315821859908 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 16 | 9952CBD892C9CD98D23D4AE3C1ED891A /* Pods-CircleBar_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 433700C5D55F7DB3EE882AB0BE7CDC68 /* Pods-CircleBar_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | DF378D1ABACF355BD352F447B3BB210D /* CircleBar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A78BC625B6301C741AEA92461C9444 /* CircleBar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | DFC5CA7AC8AA2E2B585171F42C939D63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 19 | F7AE75D23C11A1220C5A7AEB70B06B0C /* SHCircleBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51757C230981A5D201956BD88D85244F /* SHCircleBarController.swift */; }; 20 | FF7F5D61C7E342DB4EEA1FC67B7F96A4 /* SHCircleBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D73817EEF797CB363F43F1E7C703972 /* SHCircleBar.swift */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 3966FD4F838104A68B6885E548DB7B82 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = B1313BABA94179C40A0A3726F2BF085D; 29 | remoteInfo = "Pods-CircleBar_Example"; 30 | }; 31 | 69750DAD93018813F5330B042DB4B0F7 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = B7378E43393E401083784252E88810C0; 36 | remoteInfo = CircleBar; 37 | }; 38 | /* End PBXContainerItemProxy section */ 39 | 40 | /* Begin PBXFileReference section */ 41 | 0BA4474B0D6314011B59A18B2D10CB9B /* CircleBar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleBar.release.xcconfig; sourceTree = ""; }; 42 | 11CB0FAE5328F12F2D92DDA5AAC43AC3 /* Pods-CircleBar_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CircleBar_Tests.modulemap"; sourceTree = ""; }; 43 | 1E8B0F01850F0EC92EAC496BF864BB17 /* Pods-CircleBar_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleBar_Example.release.xcconfig"; sourceTree = ""; }; 44 | 218400FD6E67CB954B22CAACA6C52C50 /* CircleBar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CircleBar-Info.plist"; sourceTree = ""; }; 45 | 269127E4208FF1B12A2FA195A36A26B8 /* Pods-CircleBar_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleBar_Example.debug.xcconfig"; sourceTree = ""; }; 46 | 34A78BC625B6301C741AEA92461C9444 /* CircleBar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleBar-umbrella.h"; sourceTree = ""; }; 47 | 3F392DCD9A7B18E63D64D0C9BB7DD842 /* Pods-CircleBar_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleBar_Example-dummy.m"; sourceTree = ""; }; 48 | 430EDF56CBE398F072FE0FFC92B2A8A7 /* Pods-CircleBar_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleBar_Tests-acknowledgements.plist"; sourceTree = ""; }; 49 | 433700C5D55F7DB3EE882AB0BE7CDC68 /* Pods-CircleBar_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CircleBar_Tests-umbrella.h"; sourceTree = ""; }; 50 | 43697E92E1EF903807158F32D260C4DC /* CircleBar.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CircleBar.framework; path = CircleBar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 49A52BEF2E3FC6C7C7890877003821D8 /* CircleBar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CircleBar-dummy.m"; sourceTree = ""; }; 52 | 4C2355F78B07F14FBCFA684FF2B5FC0D /* Pods-CircleBar_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CircleBar_Tests-dummy.m"; sourceTree = ""; }; 53 | 51757C230981A5D201956BD88D85244F /* SHCircleBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHCircleBarController.swift; path = CircleBar/Classes/SHCircleBarController.swift; sourceTree = ""; }; 54 | 5179781B29B314E693B0F664B34F014B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 55 | 532504E57E7B3441D1120CCEB8D6FFF8 /* Pods_CircleBar_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CircleBar_Tests.framework; path = "Pods-CircleBar_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 551CF8ACD36D90CE12A48AD1666C3B83 /* CircleBar.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CircleBar.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 57 | 559A95F114EB5112DB4B8C9E6B019FA9 /* Pods-CircleBar_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleBar_Tests.debug.xcconfig"; sourceTree = ""; }; 58 | 5DECB1D95C46569EF549856841CC15D6 /* Pods-CircleBar_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleBar_Example-Info.plist"; sourceTree = ""; }; 59 | 5FD1C1163E0F8DB3E4DB10EB4AF624AC /* Pods-CircleBar_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleBar_Example-acknowledgements.markdown"; sourceTree = ""; }; 60 | 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 61 | 8A45BE60B66713EFFB6B81B5B1121F7E /* CircleBar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CircleBar.modulemap; sourceTree = ""; }; 62 | 8D73817EEF797CB363F43F1E7C703972 /* SHCircleBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHCircleBar.swift; path = CircleBar/Classes/SHCircleBar.swift; sourceTree = ""; }; 63 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 64 | B20580575F2D4EB698D58E7E86949D03 /* CircleBar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CircleBar.debug.xcconfig; sourceTree = ""; }; 65 | B860A79632FB5763738751B3C5E5ABC2 /* Pods_CircleBar_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_CircleBar_Example.framework; path = "Pods-CircleBar_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | C250237D035382EA9F19AC81046BEA5A /* Pods-CircleBar_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleBar_Example-acknowledgements.plist"; sourceTree = ""; }; 67 | CF7AEC6FD2581F6F8DD19AA2B050E1F1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 68 | D98B6CD64D50C37705C000CB841F9B4D /* Pods-CircleBar_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CircleBar_Example.modulemap"; sourceTree = ""; }; 69 | DE60A763D05240992BFFEC67F4208A4A /* Pods-CircleBar_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CircleBar_Tests-Info.plist"; sourceTree = ""; }; 70 | E70C881813D0F39A6094E29AB6467A20 /* Pods-CircleBar_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CircleBar_Example-frameworks.sh"; sourceTree = ""; }; 71 | F11433A87A706E2640806CDB1958BD60 /* Pods-CircleBar_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CircleBar_Example-umbrella.h"; sourceTree = ""; }; 72 | F4DDE74D80A5165B73A0C16AF23DF0BC /* Pods-CircleBar_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CircleBar_Tests-acknowledgements.markdown"; sourceTree = ""; }; 73 | F74AAAFFDEF2D39A5A690ABE074A3E18 /* Pods-CircleBar_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CircleBar_Tests.release.xcconfig"; sourceTree = ""; }; 74 | F88AA7031E01C8727E4933115FD08E10 /* CircleBar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CircleBar-prefix.pch"; sourceTree = ""; }; 75 | /* End PBXFileReference section */ 76 | 77 | /* Begin PBXFrameworksBuildPhase section */ 78 | 0571A88D2B77EFC19E43ABE15C08C86B /* Frameworks */ = { 79 | isa = PBXFrameworksBuildPhase; 80 | buildActionMask = 2147483647; 81 | files = ( 82 | 97F3A4826F381F62F380315821859908 /* Foundation.framework in Frameworks */, 83 | ); 84 | runOnlyForDeploymentPostprocessing = 0; 85 | }; 86 | 646EFF2A00858A60C1C01CC4CEAAF672 /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | 8F02E64C9A44615B7FBE331E6C95BDC0 /* Foundation.framework in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | E1736D75CE483248EA7603AAABB849B9 /* Frameworks */ = { 95 | isa = PBXFrameworksBuildPhase; 96 | buildActionMask = 2147483647; 97 | files = ( 98 | DFC5CA7AC8AA2E2B585171F42C939D63 /* Foundation.framework in Frameworks */, 99 | ); 100 | runOnlyForDeploymentPostprocessing = 0; 101 | }; 102 | /* End PBXFrameworksBuildPhase section */ 103 | 104 | /* Begin PBXGroup section */ 105 | 3A4EDED3D57C49E44014CE123998EE45 /* Pods-CircleBar_Tests */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 11CB0FAE5328F12F2D92DDA5AAC43AC3 /* Pods-CircleBar_Tests.modulemap */, 109 | F4DDE74D80A5165B73A0C16AF23DF0BC /* Pods-CircleBar_Tests-acknowledgements.markdown */, 110 | 430EDF56CBE398F072FE0FFC92B2A8A7 /* Pods-CircleBar_Tests-acknowledgements.plist */, 111 | 4C2355F78B07F14FBCFA684FF2B5FC0D /* Pods-CircleBar_Tests-dummy.m */, 112 | DE60A763D05240992BFFEC67F4208A4A /* Pods-CircleBar_Tests-Info.plist */, 113 | 433700C5D55F7DB3EE882AB0BE7CDC68 /* Pods-CircleBar_Tests-umbrella.h */, 114 | 559A95F114EB5112DB4B8C9E6B019FA9 /* Pods-CircleBar_Tests.debug.xcconfig */, 115 | F74AAAFFDEF2D39A5A690ABE074A3E18 /* Pods-CircleBar_Tests.release.xcconfig */, 116 | ); 117 | name = "Pods-CircleBar_Tests"; 118 | path = "Target Support Files/Pods-CircleBar_Tests"; 119 | sourceTree = ""; 120 | }; 121 | 3DA4D0B5E8FFED4843925B6C3C31AD25 /* Products */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 43697E92E1EF903807158F32D260C4DC /* CircleBar.framework */, 125 | B860A79632FB5763738751B3C5E5ABC2 /* Pods_CircleBar_Example.framework */, 126 | 532504E57E7B3441D1120CCEB8D6FFF8 /* Pods_CircleBar_Tests.framework */, 127 | ); 128 | name = Products; 129 | sourceTree = ""; 130 | }; 131 | 52AE0A905F2D5A0945D5861BAA9310EE /* Pods-CircleBar_Example */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | D98B6CD64D50C37705C000CB841F9B4D /* Pods-CircleBar_Example.modulemap */, 135 | 5FD1C1163E0F8DB3E4DB10EB4AF624AC /* Pods-CircleBar_Example-acknowledgements.markdown */, 136 | C250237D035382EA9F19AC81046BEA5A /* Pods-CircleBar_Example-acknowledgements.plist */, 137 | 3F392DCD9A7B18E63D64D0C9BB7DD842 /* Pods-CircleBar_Example-dummy.m */, 138 | E70C881813D0F39A6094E29AB6467A20 /* Pods-CircleBar_Example-frameworks.sh */, 139 | 5DECB1D95C46569EF549856841CC15D6 /* Pods-CircleBar_Example-Info.plist */, 140 | F11433A87A706E2640806CDB1958BD60 /* Pods-CircleBar_Example-umbrella.h */, 141 | 269127E4208FF1B12A2FA195A36A26B8 /* Pods-CircleBar_Example.debug.xcconfig */, 142 | 1E8B0F01850F0EC92EAC496BF864BB17 /* Pods-CircleBar_Example.release.xcconfig */, 143 | ); 144 | name = "Pods-CircleBar_Example"; 145 | path = "Target Support Files/Pods-CircleBar_Example"; 146 | sourceTree = ""; 147 | }; 148 | 578452D2E740E91742655AC8F1636D1F /* iOS */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, 152 | ); 153 | name = iOS; 154 | sourceTree = ""; 155 | }; 156 | 657831D07871B19A2855C176D87588B4 /* CircleBar */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 8D73817EEF797CB363F43F1E7C703972 /* SHCircleBar.swift */, 160 | 51757C230981A5D201956BD88D85244F /* SHCircleBarController.swift */, 161 | F58A4DA3CDE20D4778C75E3FF247256D /* Pod */, 162 | B61C8B0FC50D93540D32FBEB09012D40 /* Support Files */, 163 | ); 164 | name = CircleBar; 165 | path = ../..; 166 | sourceTree = ""; 167 | }; 168 | 6EF6EE8DE5B88BC1739D1DA83397E0D1 /* Targets Support Files */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 52AE0A905F2D5A0945D5861BAA9310EE /* Pods-CircleBar_Example */, 172 | 3A4EDED3D57C49E44014CE123998EE45 /* Pods-CircleBar_Tests */, 173 | ); 174 | name = "Targets Support Files"; 175 | sourceTree = ""; 176 | }; 177 | 7CF4D3971EA479A0B5FDB2E893F95D2B /* Development Pods */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 657831D07871B19A2855C176D87588B4 /* CircleBar */, 181 | ); 182 | name = "Development Pods"; 183 | sourceTree = ""; 184 | }; 185 | B61C8B0FC50D93540D32FBEB09012D40 /* Support Files */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | 8A45BE60B66713EFFB6B81B5B1121F7E /* CircleBar.modulemap */, 189 | 49A52BEF2E3FC6C7C7890877003821D8 /* CircleBar-dummy.m */, 190 | 218400FD6E67CB954B22CAACA6C52C50 /* CircleBar-Info.plist */, 191 | F88AA7031E01C8727E4933115FD08E10 /* CircleBar-prefix.pch */, 192 | 34A78BC625B6301C741AEA92461C9444 /* CircleBar-umbrella.h */, 193 | B20580575F2D4EB698D58E7E86949D03 /* CircleBar.debug.xcconfig */, 194 | 0BA4474B0D6314011B59A18B2D10CB9B /* CircleBar.release.xcconfig */, 195 | ); 196 | name = "Support Files"; 197 | path = "Example/Pods/Target Support Files/CircleBar"; 198 | sourceTree = ""; 199 | }; 200 | CF1408CF629C7361332E53B88F7BD30C = { 201 | isa = PBXGroup; 202 | children = ( 203 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 204 | 7CF4D3971EA479A0B5FDB2E893F95D2B /* Development Pods */, 205 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 206 | 3DA4D0B5E8FFED4843925B6C3C31AD25 /* Products */, 207 | 6EF6EE8DE5B88BC1739D1DA83397E0D1 /* Targets Support Files */, 208 | ); 209 | sourceTree = ""; 210 | }; 211 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 212 | isa = PBXGroup; 213 | children = ( 214 | 578452D2E740E91742655AC8F1636D1F /* iOS */, 215 | ); 216 | name = Frameworks; 217 | sourceTree = ""; 218 | }; 219 | F58A4DA3CDE20D4778C75E3FF247256D /* Pod */ = { 220 | isa = PBXGroup; 221 | children = ( 222 | 551CF8ACD36D90CE12A48AD1666C3B83 /* CircleBar.podspec */, 223 | 5179781B29B314E693B0F664B34F014B /* LICENSE */, 224 | CF7AEC6FD2581F6F8DD19AA2B050E1F1 /* README.md */, 225 | ); 226 | name = Pod; 227 | sourceTree = ""; 228 | }; 229 | /* End PBXGroup section */ 230 | 231 | /* Begin PBXHeadersBuildPhase section */ 232 | 221336D41DE40039675DB1613D4CDADA /* Headers */ = { 233 | isa = PBXHeadersBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | DF378D1ABACF355BD352F447B3BB210D /* CircleBar-umbrella.h in Headers */, 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | }; 240 | 55B1A8B0F065023356EB3EC582C83E99 /* Headers */ = { 241 | isa = PBXHeadersBuildPhase; 242 | buildActionMask = 2147483647; 243 | files = ( 244 | 52C00837E96D161CA2D012613B22434C /* Pods-CircleBar_Example-umbrella.h in Headers */, 245 | ); 246 | runOnlyForDeploymentPostprocessing = 0; 247 | }; 248 | E1BB1FCE58B188537CC429C559FDCFD9 /* Headers */ = { 249 | isa = PBXHeadersBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | 9952CBD892C9CD98D23D4AE3C1ED891A /* Pods-CircleBar_Tests-umbrella.h in Headers */, 253 | ); 254 | runOnlyForDeploymentPostprocessing = 0; 255 | }; 256 | /* End PBXHeadersBuildPhase section */ 257 | 258 | /* Begin PBXNativeTarget section */ 259 | B1313BABA94179C40A0A3726F2BF085D /* Pods-CircleBar_Example */ = { 260 | isa = PBXNativeTarget; 261 | buildConfigurationList = 16400BF935CF240BA765C22B447F167B /* Build configuration list for PBXNativeTarget "Pods-CircleBar_Example" */; 262 | buildPhases = ( 263 | 55B1A8B0F065023356EB3EC582C83E99 /* Headers */, 264 | F41F2281632CB6AE30E6691F90D548F2 /* Sources */, 265 | 0571A88D2B77EFC19E43ABE15C08C86B /* Frameworks */, 266 | D599D78AF03FBA1F2D51E1A3BE5D96C2 /* Resources */, 267 | ); 268 | buildRules = ( 269 | ); 270 | dependencies = ( 271 | A4497D3EF4928507AB77A8F72D1173D3 /* PBXTargetDependency */, 272 | ); 273 | name = "Pods-CircleBar_Example"; 274 | productName = "Pods-CircleBar_Example"; 275 | productReference = B860A79632FB5763738751B3C5E5ABC2 /* Pods_CircleBar_Example.framework */; 276 | productType = "com.apple.product-type.framework"; 277 | }; 278 | B7378E43393E401083784252E88810C0 /* CircleBar */ = { 279 | isa = PBXNativeTarget; 280 | buildConfigurationList = 0D6E0DC73A4DFBF30C70A7DFE2707E71 /* Build configuration list for PBXNativeTarget "CircleBar" */; 281 | buildPhases = ( 282 | 221336D41DE40039675DB1613D4CDADA /* Headers */, 283 | 113BE18E3C3AD654CD3B1EAF0D3496EE /* Sources */, 284 | E1736D75CE483248EA7603AAABB849B9 /* Frameworks */, 285 | 7FB422C6E795506AAD6CA282CAA2D116 /* Resources */, 286 | ); 287 | buildRules = ( 288 | ); 289 | dependencies = ( 290 | ); 291 | name = CircleBar; 292 | productName = CircleBar; 293 | productReference = 43697E92E1EF903807158F32D260C4DC /* CircleBar.framework */; 294 | productType = "com.apple.product-type.framework"; 295 | }; 296 | D4DB734C223F769EFE47E27BAB38A560 /* Pods-CircleBar_Tests */ = { 297 | isa = PBXNativeTarget; 298 | buildConfigurationList = 013D8E5C9612A24C99D276BEFA1CFA2A /* Build configuration list for PBXNativeTarget "Pods-CircleBar_Tests" */; 299 | buildPhases = ( 300 | E1BB1FCE58B188537CC429C559FDCFD9 /* Headers */, 301 | E19B84688E774BA7E9950F87964126CE /* Sources */, 302 | 646EFF2A00858A60C1C01CC4CEAAF672 /* Frameworks */, 303 | 8A83EF1E3E57F5608E9163DFF0753D7C /* Resources */, 304 | ); 305 | buildRules = ( 306 | ); 307 | dependencies = ( 308 | 41B907DD161934BFB3315E88AF8748A6 /* PBXTargetDependency */, 309 | ); 310 | name = "Pods-CircleBar_Tests"; 311 | productName = "Pods-CircleBar_Tests"; 312 | productReference = 532504E57E7B3441D1120CCEB8D6FFF8 /* Pods_CircleBar_Tests.framework */; 313 | productType = "com.apple.product-type.framework"; 314 | }; 315 | /* End PBXNativeTarget section */ 316 | 317 | /* Begin PBXProject section */ 318 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 319 | isa = PBXProject; 320 | attributes = { 321 | LastSwiftUpdateCheck = 1100; 322 | LastUpgradeCheck = 1100; 323 | }; 324 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 325 | compatibilityVersion = "Xcode 3.2"; 326 | developmentRegion = en; 327 | hasScannedForEncodings = 0; 328 | knownRegions = ( 329 | en, 330 | Base, 331 | ); 332 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 333 | productRefGroup = 3DA4D0B5E8FFED4843925B6C3C31AD25 /* Products */; 334 | projectDirPath = ""; 335 | projectRoot = ""; 336 | targets = ( 337 | B7378E43393E401083784252E88810C0 /* CircleBar */, 338 | B1313BABA94179C40A0A3726F2BF085D /* Pods-CircleBar_Example */, 339 | D4DB734C223F769EFE47E27BAB38A560 /* Pods-CircleBar_Tests */, 340 | ); 341 | }; 342 | /* End PBXProject section */ 343 | 344 | /* Begin PBXResourcesBuildPhase section */ 345 | 7FB422C6E795506AAD6CA282CAA2D116 /* Resources */ = { 346 | isa = PBXResourcesBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | }; 352 | 8A83EF1E3E57F5608E9163DFF0753D7C /* Resources */ = { 353 | isa = PBXResourcesBuildPhase; 354 | buildActionMask = 2147483647; 355 | files = ( 356 | ); 357 | runOnlyForDeploymentPostprocessing = 0; 358 | }; 359 | D599D78AF03FBA1F2D51E1A3BE5D96C2 /* Resources */ = { 360 | isa = PBXResourcesBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | ); 364 | runOnlyForDeploymentPostprocessing = 0; 365 | }; 366 | /* End PBXResourcesBuildPhase section */ 367 | 368 | /* Begin PBXSourcesBuildPhase section */ 369 | 113BE18E3C3AD654CD3B1EAF0D3496EE /* Sources */ = { 370 | isa = PBXSourcesBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | 7CCE43A9C0B6AAB932CA7400616B867D /* CircleBar-dummy.m in Sources */, 374 | FF7F5D61C7E342DB4EEA1FC67B7F96A4 /* SHCircleBar.swift in Sources */, 375 | F7AE75D23C11A1220C5A7AEB70B06B0C /* SHCircleBarController.swift in Sources */, 376 | ); 377 | runOnlyForDeploymentPostprocessing = 0; 378 | }; 379 | E19B84688E774BA7E9950F87964126CE /* Sources */ = { 380 | isa = PBXSourcesBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | 363326ACD8EFCD11A70C9E00FEDC7491 /* Pods-CircleBar_Tests-dummy.m in Sources */, 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | }; 387 | F41F2281632CB6AE30E6691F90D548F2 /* Sources */ = { 388 | isa = PBXSourcesBuildPhase; 389 | buildActionMask = 2147483647; 390 | files = ( 391 | 0F9F5763FAA9715E59EFB0EDA02BB1BA /* Pods-CircleBar_Example-dummy.m in Sources */, 392 | ); 393 | runOnlyForDeploymentPostprocessing = 0; 394 | }; 395 | /* End PBXSourcesBuildPhase section */ 396 | 397 | /* Begin PBXTargetDependency section */ 398 | 41B907DD161934BFB3315E88AF8748A6 /* PBXTargetDependency */ = { 399 | isa = PBXTargetDependency; 400 | name = "Pods-CircleBar_Example"; 401 | target = B1313BABA94179C40A0A3726F2BF085D /* Pods-CircleBar_Example */; 402 | targetProxy = 3966FD4F838104A68B6885E548DB7B82 /* PBXContainerItemProxy */; 403 | }; 404 | A4497D3EF4928507AB77A8F72D1173D3 /* PBXTargetDependency */ = { 405 | isa = PBXTargetDependency; 406 | name = CircleBar; 407 | target = B7378E43393E401083784252E88810C0 /* CircleBar */; 408 | targetProxy = 69750DAD93018813F5330B042DB4B0F7 /* PBXContainerItemProxy */; 409 | }; 410 | /* End PBXTargetDependency section */ 411 | 412 | /* Begin XCBuildConfiguration section */ 413 | 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = { 414 | isa = XCBuildConfiguration; 415 | buildSettings = { 416 | ALWAYS_SEARCH_USER_PATHS = NO; 417 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 418 | CLANG_ANALYZER_NONNULL = YES; 419 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 420 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 421 | CLANG_CXX_LIBRARY = "libc++"; 422 | CLANG_ENABLE_MODULES = YES; 423 | CLANG_ENABLE_OBJC_ARC = YES; 424 | CLANG_ENABLE_OBJC_WEAK = YES; 425 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 426 | CLANG_WARN_BOOL_CONVERSION = YES; 427 | CLANG_WARN_COMMA = YES; 428 | CLANG_WARN_CONSTANT_CONVERSION = YES; 429 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 430 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 431 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 432 | CLANG_WARN_EMPTY_BODY = YES; 433 | CLANG_WARN_ENUM_CONVERSION = YES; 434 | CLANG_WARN_INFINITE_RECURSION = YES; 435 | CLANG_WARN_INT_CONVERSION = YES; 436 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 437 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 438 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 439 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 440 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 441 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 442 | CLANG_WARN_STRICT_PROTOTYPES = YES; 443 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 444 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 445 | CLANG_WARN_UNREACHABLE_CODE = YES; 446 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 447 | COPY_PHASE_STRIP = NO; 448 | DEBUG_INFORMATION_FORMAT = dwarf; 449 | ENABLE_STRICT_OBJC_MSGSEND = YES; 450 | ENABLE_TESTABILITY = YES; 451 | GCC_C_LANGUAGE_STANDARD = gnu11; 452 | GCC_DYNAMIC_NO_PIC = NO; 453 | GCC_NO_COMMON_BLOCKS = YES; 454 | GCC_OPTIMIZATION_LEVEL = 0; 455 | GCC_PREPROCESSOR_DEFINITIONS = ( 456 | "POD_CONFIGURATION_DEBUG=1", 457 | "DEBUG=1", 458 | "$(inherited)", 459 | ); 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 467 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 468 | MTL_FAST_MATH = YES; 469 | ONLY_ACTIVE_ARCH = YES; 470 | PRODUCT_NAME = "$(TARGET_NAME)"; 471 | STRIP_INSTALLED_PRODUCT = NO; 472 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 473 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 474 | SWIFT_VERSION = 5.0; 475 | SYMROOT = "${SRCROOT}/../build"; 476 | }; 477 | name = Debug; 478 | }; 479 | 482464CD6EEF010E5E060ADBE71B865D /* Debug */ = { 480 | isa = XCBuildConfiguration; 481 | baseConfigurationReference = B20580575F2D4EB698D58E7E86949D03 /* CircleBar.debug.xcconfig */; 482 | buildSettings = { 483 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 484 | CLANG_ENABLE_OBJC_WEAK = NO; 485 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 486 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 487 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 488 | CURRENT_PROJECT_VERSION = 1; 489 | DEFINES_MODULE = YES; 490 | DYLIB_COMPATIBILITY_VERSION = 1; 491 | DYLIB_CURRENT_VERSION = 1; 492 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 493 | GCC_PREFIX_HEADER = "Target Support Files/CircleBar/CircleBar-prefix.pch"; 494 | INFOPLIST_FILE = "Target Support Files/CircleBar/CircleBar-Info.plist"; 495 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 496 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 497 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 498 | MODULEMAP_FILE = "Target Support Files/CircleBar/CircleBar.modulemap"; 499 | PRODUCT_MODULE_NAME = CircleBar; 500 | PRODUCT_NAME = CircleBar; 501 | SDKROOT = iphoneos; 502 | SKIP_INSTALL = YES; 503 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 504 | SWIFT_VERSION = 4.2; 505 | TARGETED_DEVICE_FAMILY = "1,2"; 506 | VERSIONING_SYSTEM = "apple-generic"; 507 | VERSION_INFO_PREFIX = ""; 508 | }; 509 | name = Debug; 510 | }; 511 | 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = { 512 | isa = XCBuildConfiguration; 513 | buildSettings = { 514 | ALWAYS_SEARCH_USER_PATHS = NO; 515 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 516 | CLANG_ANALYZER_NONNULL = YES; 517 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 518 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 519 | CLANG_CXX_LIBRARY = "libc++"; 520 | CLANG_ENABLE_MODULES = YES; 521 | CLANG_ENABLE_OBJC_ARC = YES; 522 | CLANG_ENABLE_OBJC_WEAK = YES; 523 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 524 | CLANG_WARN_BOOL_CONVERSION = YES; 525 | CLANG_WARN_COMMA = YES; 526 | CLANG_WARN_CONSTANT_CONVERSION = YES; 527 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 528 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 529 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 530 | CLANG_WARN_EMPTY_BODY = YES; 531 | CLANG_WARN_ENUM_CONVERSION = YES; 532 | CLANG_WARN_INFINITE_RECURSION = YES; 533 | CLANG_WARN_INT_CONVERSION = YES; 534 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 535 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 536 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 537 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 538 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 539 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 540 | CLANG_WARN_STRICT_PROTOTYPES = YES; 541 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 542 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 543 | CLANG_WARN_UNREACHABLE_CODE = YES; 544 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 545 | COPY_PHASE_STRIP = NO; 546 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 547 | ENABLE_NS_ASSERTIONS = NO; 548 | ENABLE_STRICT_OBJC_MSGSEND = YES; 549 | GCC_C_LANGUAGE_STANDARD = gnu11; 550 | GCC_NO_COMMON_BLOCKS = YES; 551 | GCC_PREPROCESSOR_DEFINITIONS = ( 552 | "POD_CONFIGURATION_RELEASE=1", 553 | "$(inherited)", 554 | ); 555 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 556 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 557 | GCC_WARN_UNDECLARED_SELECTOR = YES; 558 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 559 | GCC_WARN_UNUSED_FUNCTION = YES; 560 | GCC_WARN_UNUSED_VARIABLE = YES; 561 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 562 | MTL_ENABLE_DEBUG_INFO = NO; 563 | MTL_FAST_MATH = YES; 564 | PRODUCT_NAME = "$(TARGET_NAME)"; 565 | STRIP_INSTALLED_PRODUCT = NO; 566 | SWIFT_COMPILATION_MODE = wholemodule; 567 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 568 | SWIFT_VERSION = 5.0; 569 | SYMROOT = "${SRCROOT}/../build"; 570 | }; 571 | name = Release; 572 | }; 573 | 6BC5BA2D612FA41BE035A7ECC990E1AC /* Release */ = { 574 | isa = XCBuildConfiguration; 575 | baseConfigurationReference = F74AAAFFDEF2D39A5A690ABE074A3E18 /* Pods-CircleBar_Tests.release.xcconfig */; 576 | buildSettings = { 577 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 578 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 579 | CLANG_ENABLE_OBJC_WEAK = NO; 580 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 581 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 582 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 583 | CURRENT_PROJECT_VERSION = 1; 584 | DEFINES_MODULE = YES; 585 | DYLIB_COMPATIBILITY_VERSION = 1; 586 | DYLIB_CURRENT_VERSION = 1; 587 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 588 | INFOPLIST_FILE = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-Info.plist"; 589 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 590 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 591 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 592 | MACH_O_TYPE = staticlib; 593 | MODULEMAP_FILE = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.modulemap"; 594 | OTHER_LDFLAGS = ""; 595 | OTHER_LIBTOOLFLAGS = ""; 596 | PODS_ROOT = "$(SRCROOT)"; 597 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 598 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 599 | SDKROOT = iphoneos; 600 | SKIP_INSTALL = YES; 601 | TARGETED_DEVICE_FAMILY = "1,2"; 602 | VALIDATE_PRODUCT = YES; 603 | VERSIONING_SYSTEM = "apple-generic"; 604 | VERSION_INFO_PREFIX = ""; 605 | }; 606 | name = Release; 607 | }; 608 | 6C6253C14B50FCBE766EC15FAAC2808F /* Release */ = { 609 | isa = XCBuildConfiguration; 610 | baseConfigurationReference = 0BA4474B0D6314011B59A18B2D10CB9B /* CircleBar.release.xcconfig */; 611 | buildSettings = { 612 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 613 | CLANG_ENABLE_OBJC_WEAK = NO; 614 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 615 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 616 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 617 | CURRENT_PROJECT_VERSION = 1; 618 | DEFINES_MODULE = YES; 619 | DYLIB_COMPATIBILITY_VERSION = 1; 620 | DYLIB_CURRENT_VERSION = 1; 621 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 622 | GCC_PREFIX_HEADER = "Target Support Files/CircleBar/CircleBar-prefix.pch"; 623 | INFOPLIST_FILE = "Target Support Files/CircleBar/CircleBar-Info.plist"; 624 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 625 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 626 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 627 | MODULEMAP_FILE = "Target Support Files/CircleBar/CircleBar.modulemap"; 628 | PRODUCT_MODULE_NAME = CircleBar; 629 | PRODUCT_NAME = CircleBar; 630 | SDKROOT = iphoneos; 631 | SKIP_INSTALL = YES; 632 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 633 | SWIFT_VERSION = 4.2; 634 | TARGETED_DEVICE_FAMILY = "1,2"; 635 | VALIDATE_PRODUCT = YES; 636 | VERSIONING_SYSTEM = "apple-generic"; 637 | VERSION_INFO_PREFIX = ""; 638 | }; 639 | name = Release; 640 | }; 641 | 7D28C9081C889102391901986E558CFE /* Debug */ = { 642 | isa = XCBuildConfiguration; 643 | baseConfigurationReference = 269127E4208FF1B12A2FA195A36A26B8 /* Pods-CircleBar_Example.debug.xcconfig */; 644 | buildSettings = { 645 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 646 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 647 | CLANG_ENABLE_OBJC_WEAK = NO; 648 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 649 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 650 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 651 | CURRENT_PROJECT_VERSION = 1; 652 | DEFINES_MODULE = YES; 653 | DYLIB_COMPATIBILITY_VERSION = 1; 654 | DYLIB_CURRENT_VERSION = 1; 655 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 656 | INFOPLIST_FILE = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-Info.plist"; 657 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 658 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 659 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 660 | MACH_O_TYPE = staticlib; 661 | MODULEMAP_FILE = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.modulemap"; 662 | OTHER_LDFLAGS = ""; 663 | OTHER_LIBTOOLFLAGS = ""; 664 | PODS_ROOT = "$(SRCROOT)"; 665 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 666 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 667 | SDKROOT = iphoneos; 668 | SKIP_INSTALL = YES; 669 | TARGETED_DEVICE_FAMILY = "1,2"; 670 | VERSIONING_SYSTEM = "apple-generic"; 671 | VERSION_INFO_PREFIX = ""; 672 | }; 673 | name = Debug; 674 | }; 675 | 8C29E1CC26CF63DBFDE4568587B7A295 /* Release */ = { 676 | isa = XCBuildConfiguration; 677 | baseConfigurationReference = 1E8B0F01850F0EC92EAC496BF864BB17 /* Pods-CircleBar_Example.release.xcconfig */; 678 | buildSettings = { 679 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 680 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 681 | CLANG_ENABLE_OBJC_WEAK = NO; 682 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 683 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 684 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 685 | CURRENT_PROJECT_VERSION = 1; 686 | DEFINES_MODULE = YES; 687 | DYLIB_COMPATIBILITY_VERSION = 1; 688 | DYLIB_CURRENT_VERSION = 1; 689 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 690 | INFOPLIST_FILE = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-Info.plist"; 691 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 692 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 693 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 694 | MACH_O_TYPE = staticlib; 695 | MODULEMAP_FILE = "Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.modulemap"; 696 | OTHER_LDFLAGS = ""; 697 | OTHER_LIBTOOLFLAGS = ""; 698 | PODS_ROOT = "$(SRCROOT)"; 699 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 700 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 701 | SDKROOT = iphoneos; 702 | SKIP_INSTALL = YES; 703 | TARGETED_DEVICE_FAMILY = "1,2"; 704 | VALIDATE_PRODUCT = YES; 705 | VERSIONING_SYSTEM = "apple-generic"; 706 | VERSION_INFO_PREFIX = ""; 707 | }; 708 | name = Release; 709 | }; 710 | B87CC4A244913F931B045628454C2A6B /* Debug */ = { 711 | isa = XCBuildConfiguration; 712 | baseConfigurationReference = 559A95F114EB5112DB4B8C9E6B019FA9 /* Pods-CircleBar_Tests.debug.xcconfig */; 713 | buildSettings = { 714 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 715 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 716 | CLANG_ENABLE_OBJC_WEAK = NO; 717 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 718 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 719 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 720 | CURRENT_PROJECT_VERSION = 1; 721 | DEFINES_MODULE = YES; 722 | DYLIB_COMPATIBILITY_VERSION = 1; 723 | DYLIB_CURRENT_VERSION = 1; 724 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 725 | INFOPLIST_FILE = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-Info.plist"; 726 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 727 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 728 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 729 | MACH_O_TYPE = staticlib; 730 | MODULEMAP_FILE = "Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.modulemap"; 731 | OTHER_LDFLAGS = ""; 732 | OTHER_LIBTOOLFLAGS = ""; 733 | PODS_ROOT = "$(SRCROOT)"; 734 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 735 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 736 | SDKROOT = iphoneos; 737 | SKIP_INSTALL = YES; 738 | TARGETED_DEVICE_FAMILY = "1,2"; 739 | VERSIONING_SYSTEM = "apple-generic"; 740 | VERSION_INFO_PREFIX = ""; 741 | }; 742 | name = Debug; 743 | }; 744 | /* End XCBuildConfiguration section */ 745 | 746 | /* Begin XCConfigurationList section */ 747 | 013D8E5C9612A24C99D276BEFA1CFA2A /* Build configuration list for PBXNativeTarget "Pods-CircleBar_Tests" */ = { 748 | isa = XCConfigurationList; 749 | buildConfigurations = ( 750 | B87CC4A244913F931B045628454C2A6B /* Debug */, 751 | 6BC5BA2D612FA41BE035A7ECC990E1AC /* Release */, 752 | ); 753 | defaultConfigurationIsVisible = 0; 754 | defaultConfigurationName = Release; 755 | }; 756 | 0D6E0DC73A4DFBF30C70A7DFE2707E71 /* Build configuration list for PBXNativeTarget "CircleBar" */ = { 757 | isa = XCConfigurationList; 758 | buildConfigurations = ( 759 | 482464CD6EEF010E5E060ADBE71B865D /* Debug */, 760 | 6C6253C14B50FCBE766EC15FAAC2808F /* Release */, 761 | ); 762 | defaultConfigurationIsVisible = 0; 763 | defaultConfigurationName = Release; 764 | }; 765 | 16400BF935CF240BA765C22B447F167B /* Build configuration list for PBXNativeTarget "Pods-CircleBar_Example" */ = { 766 | isa = XCConfigurationList; 767 | buildConfigurations = ( 768 | 7D28C9081C889102391901986E558CFE /* Debug */, 769 | 8C29E1CC26CF63DBFDE4568587B7A295 /* Release */, 770 | ); 771 | defaultConfigurationIsVisible = 0; 772 | defaultConfigurationName = Release; 773 | }; 774 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 775 | isa = XCConfigurationList; 776 | buildConfigurations = ( 777 | 2B9E26EAE2CD392AD762421F663075A1 /* Debug */, 778 | 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */, 779 | ); 780 | defaultConfigurationIsVisible = 0; 781 | defaultConfigurationName = Release; 782 | }; 783 | /* End XCConfigurationList section */ 784 | }; 785 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 786 | } 787 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.8.2 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CircleBar : NSObject 3 | @end 4 | @implementation PodsDummy_CircleBar 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double CircleBarVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char CircleBarVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CircleBar 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar.modulemap: -------------------------------------------------------------------------------- 1 | framework module CircleBar { 2 | umbrella header "CircleBar-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CircleBar 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CircleBar/CircleBar.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CircleBar 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## CircleBar 5 | 6 | MIT License 7 | 8 | Copyright (c) 2019 NOT SOFTHAUS, SRL. 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 | Generated by CocoaPods - https://cocoapods.org 29 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | MIT License 18 | 19 | Copyright (c) 2019 NOT SOFTHAUS, SRL. 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | 39 | License 40 | MIT 41 | Title 42 | CircleBar 43 | Type 44 | PSGroupSpecifier 45 | 46 | 47 | FooterText 48 | Generated by CocoaPods - https://cocoapods.org 49 | Title 50 | 51 | Type 52 | PSGroupSpecifier 53 | 54 | 55 | StringsTable 56 | Acknowledgements 57 | Title 58 | Acknowledgements 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CircleBar_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CircleBar_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | BCSYMBOLMAP_DIR="BCSymbolMaps" 23 | 24 | 25 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 26 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 27 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 28 | 29 | # Copies and strips a vendored framework 30 | install_framework() 31 | { 32 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 33 | local source="${BUILT_PRODUCTS_DIR}/$1" 34 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 35 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 36 | elif [ -r "$1" ]; then 37 | local source="$1" 38 | fi 39 | 40 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 41 | 42 | if [ -L "${source}" ]; then 43 | echo "Symlinked..." 44 | source="$(readlink "${source}")" 45 | fi 46 | 47 | if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then 48 | # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied 49 | find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do 50 | echo "Installing $f" 51 | install_bcsymbolmap "$f" "$destination" 52 | rm "$f" 53 | done 54 | rmdir "${source}/${BCSYMBOLMAP_DIR}" 55 | fi 56 | 57 | # Use filter instead of exclude so missing patterns don't throw errors. 58 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 59 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 60 | 61 | local basename 62 | basename="$(basename -s .framework "$1")" 63 | binary="${destination}/${basename}.framework/${basename}" 64 | 65 | if ! [ -r "$binary" ]; then 66 | binary="${destination}/${basename}" 67 | elif [ -L "${binary}" ]; then 68 | echo "Destination binary is symlinked..." 69 | dirname="$(dirname "${binary}")" 70 | binary="${dirname}/$(readlink "${binary}")" 71 | fi 72 | 73 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 74 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 75 | strip_invalid_archs "$binary" 76 | fi 77 | 78 | # Resign the code if required by the build settings to avoid unstable apps 79 | code_sign_if_enabled "${destination}/$(basename "$1")" 80 | 81 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 82 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 83 | local swift_runtime_libs 84 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 85 | for lib in $swift_runtime_libs; do 86 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 87 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 88 | code_sign_if_enabled "${destination}/${lib}" 89 | done 90 | fi 91 | } 92 | # Copies and strips a vendored dSYM 93 | install_dsym() { 94 | local source="$1" 95 | warn_missing_arch=${2:-true} 96 | if [ -r "$source" ]; then 97 | # Copy the dSYM into the targets temp dir. 98 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 99 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 100 | 101 | local basename 102 | basename="$(basename -s .dSYM "$source")" 103 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 104 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 105 | 106 | # Strip invalid architectures from the dSYM. 107 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 108 | strip_invalid_archs "$binary" "$warn_missing_arch" 109 | fi 110 | if [[ $STRIP_BINARY_RETVAL == 0 ]]; then 111 | # Move the stripped file into its final destination. 112 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 113 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 114 | else 115 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 116 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 117 | fi 118 | fi 119 | } 120 | 121 | # Used as a return value for each invocation of `strip_invalid_archs` function. 122 | STRIP_BINARY_RETVAL=0 123 | 124 | # Strip invalid architectures 125 | strip_invalid_archs() { 126 | binary="$1" 127 | warn_missing_arch=${2:-true} 128 | # Get architectures for current target binary 129 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 130 | # Intersect them with the architectures we are building for 131 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 132 | # If there are no archs supported by this binary then warn the user 133 | if [[ -z "$intersected_archs" ]]; then 134 | if [[ "$warn_missing_arch" == "true" ]]; then 135 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 136 | fi 137 | STRIP_BINARY_RETVAL=1 138 | return 139 | fi 140 | stripped="" 141 | for arch in $binary_archs; do 142 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 143 | # Strip non-valid architectures in-place 144 | lipo -remove "$arch" -output "$binary" "$binary" 145 | stripped="$stripped $arch" 146 | fi 147 | done 148 | if [[ "$stripped" ]]; then 149 | echo "Stripped $binary of architectures:$stripped" 150 | fi 151 | STRIP_BINARY_RETVAL=0 152 | } 153 | 154 | # Copies the bcsymbolmap files of a vendored framework 155 | install_bcsymbolmap() { 156 | local bcsymbolmap_path="$1" 157 | local destination="${BUILT_PRODUCTS_DIR}" 158 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 159 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 160 | } 161 | 162 | # Signs a framework with the provided identity 163 | code_sign_if_enabled() { 164 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 165 | # Use the current code_sign_identity 166 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 167 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 168 | 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | code_sign_cmd="$code_sign_cmd &" 171 | fi 172 | echo "$code_sign_cmd" 173 | eval "$code_sign_cmd" 174 | fi 175 | } 176 | 177 | if [[ "$CONFIGURATION" == "Debug" ]]; then 178 | install_framework "${BUILT_PRODUCTS_DIR}/CircleBar/CircleBar.framework" 179 | fi 180 | if [[ "$CONFIGURATION" == "Release" ]]; then 181 | install_framework "${BUILT_PRODUCTS_DIR}/CircleBar/CircleBar.framework" 182 | fi 183 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 184 | wait 185 | fi 186 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CircleBar_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CircleBar_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar/CircleBar.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "CircleBar" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CircleBar_Example { 2 | umbrella header "Pods-CircleBar_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Example/Pods-CircleBar_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar/CircleBar.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "CircleBar" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CircleBar_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CircleBar_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CircleBar_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CircleBar_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar/CircleBar.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "CircleBar" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CircleBar_Tests { 2 | umbrella header "Pods-CircleBar_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CircleBar_Tests/Pods-CircleBar_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CircleBar/CircleBar.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "CircleBar" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import CircleBar 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 NOT SOFTHAUS, SRL. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://user-images.githubusercontent.com/7403338/53202857-3e1e1600-3630-11e9-9bea-b9b369996e87.png) 2 | 3 | 4 | # CircleBar 5 | 6 | [![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/softhausHQ/CircleBar/blob/readme-styling/LICENSE) 7 | [![CocoaPod compatible](https://img.shields.io/cocoapods/v/CircleBar.svg)](https://github.com/softhausHQ/CircleBar) 8 | [![Swift 4.2](https://img.shields.io/badge/Swift-4.2-green.svg?style=flat)](https://developer.apple.com/swift/) 9 | [![Twitter](https://img.shields.io/twitter/follow/softhausHQ.svg?style=social)](http://twitter.com/softhausHQ) 10 | 11 | 12 | 13 | 14 |
15 |
16 | 17 | Don’t you, sometimes, miss fun user interfaces? 18 | Truth is, we do. Sure, you can't use them in enterprise apps for obvious reasons, but if you're working on a fun project... 19 | 20 | CircleBar is a fun tab bar navigation controller, 21 | written in Swift 4 and available through CocoaPods. 22 | 23 | > Currently at v1.0. Contributions are welcome. 24 | 25 | 26 |
27 |
28 |
29 | 30 | 31 | 32 | # 33 | 34 | We’re a nimble team of friendly designers and thoughtful developers. 35 | Have a fun project or need help? 36 | 37 | 38 | 39 | 40 |
41 |
42 |
43 | 44 | # Installation 45 | CircleBar is available through [CocoaPods](https://cocoapods.org). To install 46 | it, simply add the following line to your Podfile: 47 | ```ruby 48 | pod 'CircleBar' 49 | ``` 50 | 51 | 52 | # Roadmap 53 | - [x] Write the Usage section 54 | - [ ] Improve landscape support 55 | - [ ] Improve transitions 56 | - [ ] Release v1.0 57 | - [ ] iPad support 58 | 59 | # Usage 60 | 1. Create a new `UITabBarController` in your storyboard or nib. 61 | 62 | 2. Set the class of the `UITabBarController` to `SHCircleBarController` in your Storyboard or nib. 63 | 64 | 3. Set the class of the `UITabBar` of `SHTabBarController` to `SHCircleBar` in your Storyboard or nib. 65 | 66 | 4. Add a custom image icon and title for `UITabBarItem` of each child `UIViewContrroller`. 67 | 68 | 69 | 70 | # Example 71 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 72 | 73 | 74 | 75 | # License 76 | CircleBar is available under the MIT license. See the [LICENSE](https://github.com/softhausHQ/CircleBar/blob/readme-styling/LICENSE) file for more information. 77 | If you use the library, please include credits and link to https://softhaus.org. 78 | 79 | > _Design inspired from Lukáš Straňák, Dribbble._ 80 | 81 | Thank you. 82 | 83 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------