This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Getting Started with Claude Code | |
| A simple guide for team members who want to use Claude Code with projects like this one. | |
| --- | |
| ## What is Claude Code? | |
| Claude Code is a command-line AI assistant that can: | |
| - Read and understand your codebase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Call from App Delegate | |
| func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { | |
| guard let components = URLComponents(string: url.absoluteString), let scheme = components.scheme else { return true } | |
| let absolute = url.absoluteString | |
| let path = absolute.replacingOccurrences(of: "\(scheme)://", with: "") | |
| launchCoordinator.appCoordinator.deepLink(path: path) | |
| return true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Adapated from https://www.raywenderlich.com/94302/implement-circular-image-loader-animation-cashapelayer | |
| // Swift 3 | |
| // Init with frame size or set in storyboard and use an IBOutlet | |
| // Set end stroke to 1 and animate with duration, or pass in the progress (between 0 and 1) while downloading, etc | |
| class CircleProgressView: UIView { | |
| let circlePathLayer = CAShapeLayer() | |
| let circleRadius: CGFloat = 10.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extension: Date { | |
| var timeAgoString: String { | |
| let interval = Calendar.current.dateComponents([.year, .month, .day, .hour], from: self, to: Date()) | |
| if let year = interval.year, year > 0 { | |
| return year == 1 ? "\(year) year ago" : "\(year) years ago" | |
| } else if let month = interval.month, month > 0 { | |
| return month == 1 ? "\(month) month ago" : "\(month) months ago" | |
| } else if let day = interval.day, day > 0 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func imageByAddingBorder(width: CGFloat, color: UIColor) -> UIImage? { | |
| UIGraphicsBeginImageContext(self.size) | |
| let imageRect = CGRect(x: 0, y: 0, width: self.size.width, height: self.size.height) | |
| self.draw(in: imageRect) | |
| let context = UIGraphicsGetCurrentContext() | |
| let borderRect = imageRect.insetBy(dx: width / 2, dy: width / 2) | |
| context?.setStrokeColor(color.cgColor) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extension UIImage { | |
| func alpha(value: CGFloat) -> UIImage { | |
| let format = UIGraphicsImageRendererFormat() | |
| return UIGraphicsImageRenderer(size: size, format: format).image { _ in | |
| draw(at: CGPoint.zero, blendMode: .normal, alpha: value) | |
| } | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| override func viewWillDisappear(_ animated: Bool) { | |
| super.viewWillDisappear(animated) | |
| UIDevice.current.setValue(UIInterfaceOrientation.portrait.rawValue, forKey: "orientation") | |
| } |
NewerOlder