| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- //
- // FLEXMethodCallingViewController.m
- // Flipboard
- //
- // Created by Ryan Olson on 5/23/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import "FLEXMethodCallingViewController.h"
- #import "FLEXRuntimeUtility.h"
- #import "FLEXFieldEditorView.h"
- #import "FLEXObjectExplorerFactory.h"
- #import "FLEXObjectExplorerViewController.h"
- #import "FLEXArgumentInputView.h"
- #import "FLEXArgumentInputViewFactory.h"
- @interface FLEXMethodCallingViewController ()
- @property (nonatomic, assign) Method method;
- @end
- @implementation FLEXMethodCallingViewController
- - (id)initWithTarget:(id)target method:(Method)method
- {
- self = [super initWithTarget:target];
- if (self) {
- self.method = method;
- self.title = [self isClassMethod] ? @"Class Method" : @"Method";
- }
- return self;
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- self.fieldEditorView.fieldDescription = [FLEXRuntimeUtility prettyNameForMethod:self.method isClassMethod:[self isClassMethod]];
-
- NSArray *methodComponents = [FLEXRuntimeUtility prettyArgumentComponentsForMethod:self.method];
- NSMutableArray *argumentInputViews = [NSMutableArray array];
- unsigned int argumentIndex = kFLEXNumberOfImplicitArgs;
- for (NSString *methodComponent in methodComponents) {
- char *argumentTypeEncoding = method_copyArgumentType(self.method, argumentIndex);
- FLEXArgumentInputView *inputView = [FLEXArgumentInputViewFactory argumentInputViewForTypeEncoding:argumentTypeEncoding];
- free(argumentTypeEncoding);
-
- inputView.backgroundColor = self.view.backgroundColor;
- inputView.title = methodComponent;
- [argumentInputViews addObject:inputView];
- argumentIndex++;
- }
- self.fieldEditorView.argumentInputViews = argumentInputViews;
- }
- - (BOOL)isClassMethod
- {
- return self.target && self.target == [self.target class];
- }
- - (NSString *)titleForActionButton
- {
- return @"Call";
- }
- - (void)actionButtonPressed:(id)sender
- {
- [super actionButtonPressed:sender];
-
- NSMutableArray *arguments = [NSMutableArray array];
- for (FLEXArgumentInputView *inputView in self.fieldEditorView.argumentInputViews) {
- id argumentValue = inputView.inputValue;
- if (!argumentValue) {
- // Use NSNulls as placeholders in the array. They will be interpreted as nil arguments.
- argumentValue = [NSNull null];
- }
- [arguments addObject:argumentValue];
- }
-
- NSError *error = nil;
- id returnedObject = [FLEXRuntimeUtility performSelector:method_getName(self.method) onObject:self.target withArguments:arguments error:&error];
-
- if (error) {
- NSString *title = @"Method Call Failed";
- NSString *message = [error localizedDescription];
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
- [alert show];
- } else if (returnedObject) {
- // For non-nil (or void) return types, push an explorer view controller to display the returned object
- FLEXObjectExplorerViewController *explorerViewController = [FLEXObjectExplorerFactory explorerViewControllerForObject:returnedObject];
- [self.navigationController pushViewController:explorerViewController animated:YES];
- } else {
- // If we didn't get a returned object but the method call succeeded,
- // pop this view controller off the stack to indicate that the call went through.
- [self.navigationController popViewControllerAnimated:YES];
- }
- }
- @end
|