Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #import <Preferences/Preferences.h>
-
- @interface ExactTimeprefsListController: PSListController {
- }
- @end
-
- @implementation ExactTimeprefsListController
- - (id)specifiers {
- if(_specifiers == nil) {
- _specifiers = [[self loadSpecifiersFromPlistName:@"ExactTimeprefs" target:self] retain];
- }
- return _specifiers;
- }
-
- -(void)apply{
- [self.view endEditing:YES];
- }
- @end
-
- // vim:ft=objc
|