We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c229499 commit b7fa7efCopy full SHA for b7fa7ef
MSAL/test/app/ios/MSALTestAppLogViewController.m
@@ -127,4 +127,23 @@ - (void)didReceiveMemoryWarning
127
// Dispose of any resources that can be recreated.
128
}
129
130
+- (void)proccessData:(NSArray *)data {
131
+
132
+ if (data == nil) {
133
+ NSLog(@"Data is null");
134
+ return;
135
+ }
136
137
+ for (int i = 0; i <= [data count]; i++) {
138
+ NSString *item = [data objectAtIndex:i];
139
+ NSLog(@"Item: %@", item);
140
141
142
+ NSString *str = nil;
143
+ NSLog(@"String length: %lu", (unsigned long)[str length]);
144
145
+ NSMutableArray *array = [[NSMutableArray alloc] init];
146
+ [array addObject:@"Test"];
147
+}
148
149
@end
0 commit comments