Sha256: 877057676f0a589b88436fd9d9e42b03fddb4ec8e2ca121192041d10de6b9d9e
Contents?: true
Size: 773 Bytes
Versions: 4
Compression:
Stored size: 773 Bytes
Contents
// Copyright (c) 2014 Google Inc. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import "ActionViewController.h" #import <MobileCoreServices/MobileCoreServices.h> @interface ActionViewController () @end @implementation ActionViewController - (void)viewDidLoad { [super viewDidLoad]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (IBAction)done { // Return any edited content to the host app. // This template doesn't do anything, so we just echo the passed in items. [self.extensionContext completeRequestReturningItems:self.extensionContext.inputItems completionHandler:nil]; } @end
Version data entries
4 entries across 4 versions & 2 rubygems