ScreenTracesViewController.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <UIKit/UIKit.h>
  15. /** This is a split view controller subclass that sets up everything needed to display the catalog
  16. * of all the screen trace test screens available.
  17. */
  18. @interface ScreenTracesViewController : UISplitViewController
  19. NS_ASSUME_NONNULL_BEGIN
  20. /** Initializes and sets up the children view controllers. */
  21. - (instancetype)initAndSetup NS_DESIGNATED_INITIALIZER;
  22. - (instancetype)init NS_UNAVAILABLE;
  23. - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil
  24. bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
  25. - (instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE;
  26. NS_ASSUME_NONNULL_END
  27. @end