Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #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
|