Tool | Programming Language | Build approach | UI approach | Unit testing |
---|---|---|---|---|
PhoneGap | HTML/CSS/JavaScript | Runs in UIWebView | UI looks the same on all platforms | [?] Unit testing |
Xamarin (vanilla) | C# | Generates native code | Separate UI with native controls | [x] Unit testing |
Xamarin.Forms | C# | Generates native code | Attempts to follow guidelines | [x] Unit testing |
Titanium | HTML/CSS/JavaScript | Generates native code | UI looks the same on all platforms |
This file contains 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
default_platform :ios | |
platform :ios do | |
before_all do | |
#reset git | |
setup_jenkins() | |
reset_git_repo(force: true) | |
end |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>REMINDER_PREVIEW_FORMAT</key> | |
<dict> | |
<key>NSStringLocalizedFormatKey</key> | |
<string>Take %1$#@lu_pills@ at %2$@</string> | |
<key>lu_total_runs</key> | |
<dict> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>REMINDER_PREVIEW_FORMAT</key> | |
<dict> | |
<key>NSStringLocalizedFormatKey</key> | |
<string>Take %1$#@lu_pills@ at %2$@</string> | |
<key>lu_pills</key> |
This file contains 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
#import <NSError+UserFriendly.h> | |
-(void)onMyNewsLoadingCompleted:(id)maybeResult | |
error:(NSError*)maybeError | |
{ | |
[error presentAlertToTheUser]; | |
} |
This file contains 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
fastlane unit_tests | |
[18:26:01]: ------------------------------------------------- | |
[18:26:01]: --- Step: Verifying required fastlane version --- | |
[18:26:01]: ------------------------------------------------- | |
[18:26:01]: fastlane version valid | |
[18:26:01]: ------------------------------ | |
[18:26:01]: --- Step: default_platform --- | |
[18:26:01]: ------------------------------ | |
[18:26:01]: Driving the lane 'ios unit_tests' 🚀 | |
[18:26:01]: ------------------------------------- |
- Series
- line
- dash line
- dot (circle)
- Logarythmic scale
[50; 100; 1K; 10K; 100K; 1M+]
- Date axis
- Number acronyms for scale
- axis names
- background grid
This file contains 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
//: Playground - noun: a place where people can play | |
import UIKit | |
protocol A | |
{ | |
associatedtype SomeType | |
var a : SomeType { get } | |
} |
This file contains 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
“под try мы подразумеваем не то, что вы думаете, а совсем другую хуйню. И похуй, что называется одинаково” | |
associatedtype - не generic, хотя похоже. Сорян пацаны, не конфузьтесь | |
protocol - только отчасти интерфейс, мы не виноваты. | |
This file contains 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
@interface HPQuizRouter | |
- (void)navigateToSelectedQuiz:(id<HPQuizState>)quizState from:(UIViewController*)screen; | |
- (void)prepareForSegue:(UIStoryboardSegue*)segue sender:(id)sender; | |
@end |