I want a notification to go off everyday at 7:00, but it will not go off. I also want it to show in lock screen. Here is all the code I have so far.
-(void)
You need to call
[[UIApplication sharedApplication] scheduleLocalNotiication:localNotification];
before you release localNotification. Your code does all the setup but doesn't actually schedule it, which is why you never get it.
localNotification