1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| // UI
- (void) go_to_menu:(id) sender;
- (void) go_to_screen:(id) sender;
// Keyboard Delegates
- (void) address_keyboard_delegate;
- (void) message_keyboard_delegate;
// User Interactions
// Step 2
- (void) clean_entry:(id) sender;
- (void) locate_me:(id) sender;
- (void) select_one_result:(id) sender;
- (void) select_result_from_location:(id) sender;
// User Interactions
// Step 3.1
- (void) step_3_1_action:(id) sender;
// User Interactions
// Step 3.2
- (void) step_3_2_action:(id) sender;
// Callbacks
- (void) alertView:(UIAlertView*) alertView clickedButtonAtIndex:(NSInteger) buttonIndex;
- (void) animationHasFinished:(NSString*) animationID finished:(BOOL) finished context:(void*) context;
- (void) reverse_geocoder_callback:(id) sender;
// Callbacks
// Step 2
// /!\ Position 0 is the first position
- (void) add_one_address:(NSString*) one_address with_tag:(int) tag and_postion:(short) position from_database:(BOOL) from_database;
- (void) clean_result_list;
- (void) finalize_result_list:(int) nb_results;
// Player Methods
- (void) observeValueForKeyPath:(NSString*) keyPath ofObject:(id) object change:(NSDictionary*) change context:(void*) context;
- (void) play_next_video:(NSNotification*) notification; |
Partager