Переглянути джерело

Display only public interfaces in header file

Sebastián Katzer 12 роки тому
батько
коміт
6bee7c554f
2 змінених файлів з 10 додано та 10 видалено
  1. 0 9
      src/ios/APPLocalNotification.h
  2. 10 1
      src/ios/APPLocalNotification.m

+ 0 - 9
src/ios/APPLocalNotification.h

@@ -22,12 +22,3 @@
 - (void) cancelAll:(CDVInvokedUrlCommand*)command;
 
 @end
-
-
-@interface APPLocalNotification (Private)
-
-- (NSMutableDictionary*) repeatDict;
-- (NSDictionary*) userDict:(NSMutableDictionary*)options;
-- (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options;
-
-@end

+ 10 - 1
src/ios/APPLocalNotification.m

@@ -7,7 +7,16 @@
  *  GPL v2 licensed
  */
 
- #import "APPLocalNotification.h"
+#import "APPLocalNotification.h"
+
+
+@interface APPLocalNotification (Private)
+
+- (NSMutableDictionary*) repeatDict;
+- (NSDictionary*) userDict:(NSMutableDictionary*)options;
+- (UILocalNotification*) prepareNotification:(NSMutableDictionary*)options;
+
+@end
 
 
 @implementation APPLocalNotification