¡@

Home 

2014/10/15 ¤U¤È 10:13:15

iphone Programming Glossary: reminders

Play local notification default sound when displaying UIAlertView?

http://stackoverflow.com/questions/3277811/play-local-notification-default-sound-when-displaying-uialertview

local notification default sound when displaying UIAlertView I'm writing a reminders app for iPhone that displays reminders using local notifications. If a reminder goes off while the application is running.. local notification default sound when displaying UIAlertView I'm writing a reminders app for iPhone that displays reminders using local notifications. If a reminder goes off while the application is running the local notification isn't displayed...

Populate the table view sections with rows of table in sqlite database in an order

http://stackoverflow.com/questions/8475446/populate-the-table-view-sections-with-rows-of-table-in-sqlite-database-in-an-ord

based on number of saves in add reminder page I found out the solution for generating cells based on number of saved reminders this is the code NSInteger numberOfSectionsInTableView UITableView view NSInteger numTableRecords 1 sqlite3_stmt statement.. UITableView view NSInteger numTableRecords 1 sqlite3_stmt statement if sqlite3_open self.databasePath UTF8String remindersDB SQLITE_OK NSString sqlStatement NSString stringWithFormat @ select count from reminders const char sql sqlStatement cStringUsingEncoding.. UTF8String remindersDB SQLITE_OK NSString sqlStatement NSString stringWithFormat @ select count from reminders const char sql sqlStatement cStringUsingEncoding NSUTF8StringEncoding if sqlite3_prepare_v2 remindersDB sql 1 statement..

Get selected value of a picker view that is present in different view and use the string in some other view

http://stackoverflow.com/questions/8708543/get-selected-value-of-a-picker-view-that-is-present-in-different-view-and-use-th

i.e. my application is reminder application which user saves the reminder that is visible in view reminder page.The reminders are saved by the user in respective groups say friends family office etc... So I have earlier retrieved in a bad programming.. office etc... So I have earlier retrieved in a bad programming context i.e. I took 4 view controllers for displaying reminders corresponding to 4 groups i.e. say friendsViewController for displaying reminders corresponding to friends using the query.. 4 view controllers for displaying reminders corresponding to 4 groups i.e. say friendsViewController for displaying reminders corresponding to friends using the query NSString getQuery NSString stringWithFormat @ SELECT FROM reminders WHERE Grp 'Friends'..

Retrieve month part from date saved in sqlite database table for displaying month wise data

http://stackoverflow.com/questions/8725685/retrieve-month-part-from-date-saved-in-sqlite-database-table-for-displaying-mont

wise say if the user selects month January from picker view it will navigate to view controller where I display the reminders corresponding to the selected month. I have earlier got struck at how to access the string value selected from picker view.. got struck at how to access the string value selected from picker view so that we can use the query SELECT FROM reminders WHERE Grp ' @' appDelegate.groupString Where groupString is declared in app delegate file assigned a value in view controller.. I found out here .Now I am trying to do the same thing for retrieving dates i.e. simply write the query as SELECT FROM reminders WHERE Date ' @' appDelegate.monthString Its not working because the date is saved in @ yyyy MM dd HH mm ss .So I have made..

Share data between two or more iPhone applications

http://stackoverflow.com/questions/9425706/share-data-between-two-or-more-iphone-applications

example the first application is for event management and I use it to save some event. The second application is for reminders which will get data from the other application in order to remind me about the event. This is just a simple example not..