There is any difference between:
#import <UIKit/UIKit.h>
const static NSString * name;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@end
and:
#import <UIKit/UIKit.h>
const NSString * name;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@end