Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

18 rindas
279B

  1. #include "RootListController.h"
  2. @implementation RootListController
  3. - (NSArray *)specifiers {
  4. if (!_specifiers) {
  5. _specifiers = [[self loadSpecifiersFromPlistName:@"Root" target:self] retain];
  6. }
  7. return _specifiers;
  8. }
  9. -(void)apply{
  10. [self.view endEditing:YES];
  11. }
  12. @end