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

#dc comics#dc#batman#bruce wayne#dc fanart#dick grayson#batfam#tim drake#batfamily


seen from United States

seen from United States
seen from China
seen from United States

seen from United States
seen from China

seen from United States
seen from China

seen from Türkiye
seen from United States
seen from United States

seen from Malaysia

seen from Malaysia
seen from Jamaica
seen from China

seen from United Kingdom
seen from Italy
seen from United States
seen from United States

seen from United States
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.