| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- //
- // 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];
- }
-
- id returnedObject = [FLEXRuntimeUtility performSelector:method_getName(self.method) onObject:self.target withArguments:arguments error:NULL];
-
- // For non-nil (or void) return types, push an explorer view controller to display the returned object
- if (returnedObject) {
- FLEXObjectExplorerViewController *explorerViewController = [FLEXObjectExplorerFactory explorerViewControllerForObject:returnedObject];
- [self.navigationController pushViewController:explorerViewController animated:YES];
- }
- }
- @end
|