I’m now developing my own film. It is pretty a zen process - I really enjoy it.

seen from Singapore

seen from United Kingdom
seen from Singapore
seen from United Kingdom
seen from Russia

seen from United States

seen from United Kingdom
seen from United States

seen from Russia
seen from United States

seen from Canada
seen from China
seen from United States

seen from Canada
seen from Türkiye
seen from Brazil

seen from Australia

seen from Malaysia
seen from Russia
seen from Yemen
I’m now developing my own film. It is pretty a zen process - I really enjoy it.
Swift, how to implement protocol from Objective-C
When you want to implement protocol written in Objective-C, you must follow naming convention.
Let's say you need to implement following method:
- (void)restClient:(DBRestClient*)client loadedFile:(NSString*)destPath;
In Swift it will look like:
func restClient(client:DBRestClient, loadedFile:NSString) {
NSLog("loaded file: \(loadedFile)")
}
If you change argument's names method will not match.