- с утра посвизлил - весь день свободен
- украл, посвиззлил - в тюрьму
- волков бояться - в лесу не свиззлить
- не все золото что свиззлит
- свиззлинг - всему голова
- и рыбку съесть, и посвиззлить
- в большой семье свиззлом не щелкают
FriendsProvider.shared.getFriendList(){ success in | |
print("users Fetched \(success)") | |
dispatch_async(dispatch_get_main_queue(), { | |
self.delegate?.hideProgressHUD() | |
}) | |
} |
github "FutureKit/FutureKit" "v3" | |
github "ReSwift/ReSwift" == 3.0.0 | |
github "ReSwift/ReSwiftRouter" == 0.5.1 |
@interface HPQuizRouter | |
- (void)navigateToSelectedQuiz:(id<HPQuizState>)quizState from:(UIViewController*)screen; | |
- (void)prepareForSegue:(UIStoryboardSegue*)segue sender:(id)sender; | |
@end |
“под try мы подразумеваем не то, что вы думаете, а совсем другую хуйню. И похуй, что называется одинаково” | |
associatedtype - не generic, хотя похоже. Сорян пацаны, не конфузьтесь | |
protocol - только отчасти интерфейс, мы не виноваты. | |
//: Playground - noun: a place where people can play | |
import UIKit | |
protocol A | |
{ | |
associatedtype SomeType | |
var a : SomeType { get } | |
} |
[50; 100; 1K; 10K; 100K; 1M+]
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]: ------------------------------------- |
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 |
#import <NSError+UserFriendly.h> | |
-(void)onMyNewsLoadingCompleted:(id)maybeResult | |
error:(NSError*)maybeError | |
{ | |
[error presentAlertToTheUser]; | |
} |