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
| let yourString: String = "Hello World" | |
| let yourSubstring: String = yourString.dropLast() | |
| print(yourSubstring) // Will print: "Hello Worl" |
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
| /// Springboard UITests helper | |
| /// USAGE: Springboard.uninstallApp(named: "Instagram") | |
| internal final class Springboard { | |
| // MARK; - Constants | |
| /// Press duration | |
| private static let pressDuration: Double = 1.3 | |
| /// Delete button name | |
| private static let deleteButtonName: String = "Delete" |