Start a new topic

header files is missing in the Kinveykit 1.22.0

when am write the same code in ios "KCSUser " header is not avaliable

[KCSUser userWithUsername:@"kinvey" password:@"12345" withCompletionBlock:^(KCSUser *user, NSError *errorOrNil, KCSUserActionResult result) {

if (result == KCSUserCreated && errorOrNil == nil) {

//user is created

} else {

//there was an error with the create

}

}];



please help me..

1 Comment

You need add to a



```#import <KinveyKit/KinveyKit.h>```



to your file to load the headers
Login or Signup to post a comment