blob: 041148c136a7ac96e3c9a9d0223daf3e7ccd9294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
BOOL immediatlyReady = [self ensureResource: mutableResources[0]
existsInDirectoryAtPath: mutablePaths[0]
queueMode: mode
completionHandler: completionHandler
errorHandler: errorHandler];
[myObject doFooWith1: arg1
name1: arg2 // some lines with >1 arg
error1: arg3];
[myObject doFooWith2: arg4
name2: arg5
error2: arg6];
[myObject doFooWith3: arg7
name3: arg8 // aligning keywords instead of colons
error3: arg9];
[myObject doithereguysA: argA
reallylongargname: argB
another: argC];
int foo()
{
[UIView transitionWithView: self.window
duration: 0.3
options: UIViewAnimationOptionTransitionCrossDissolve
animations:^{
BOOL oldState = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled: NO];
self.window.rootViewController = self.viewController;
[UIView setAnimationsEnabled: oldState];
}
completion:^(BOOL finished) {
BOOL foo;
}];
}
int foo2()
{
[UIView transitionWithView: self.window
duration: 0.3
options: UIViewAnimationOptionTransitionCrossDissolve
animations:^{
BOOL oldState = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled: NO];
self.window.rootViewController = self.viewController;
[UIView setAnimationsEnabled: oldState];
}
completion:^(BOOL finished) {
BOOL foo;
}];
[[HRNewsService sharedInstance] registerPushToken: deviceToken
success:^{
DLog(@"Finished Registering Push Token!");
self.notificationsEnabled = YES;
}
fail: nil];
}
|