Thema: Prism Objective-C Callback

Einzelnen Beitrag anzeigen

jensw_2000
(Gast)

n/a Beiträge
 
#3

AW: Objective-C Callback

  Alt 24. Jul 2013, 00:13
CDECLS/stdcall? welche call convention?
Ist keine Lib, sondern ein Framework, das direkt gekinkt wird.

Ich glaube ich bin auch auf dem Holzweg.
Der Type EKEventStoreRequestAccessCompletionHandler ist offensichtlich bereits deklariert.
http://developer.apple.com/library/ios/#documentation/EventKit/Reference/EKEventStoreClassRef/Reference/Reference.html%23//apple_ref/occ/instm/EKEventStore/requestAccessToEntityType:completion:


So sieht das Aufruf unter Obj-C aus ...

Code:
[eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted,NSError* error){
           
            //Access not granted-------------
            if(!granted){
 
            }
           
            //Access granted------------------
            }else{
 
                        }
 }];
  Mit Zitat antworten Zitat