I am looking to create a system which on signup will create a subdomain on my website for the users account area.
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Hello i want to call a c Function from an objective c method how can i do that?
here is my function
static BOOL test () {
....
if(...){
return YES;
}else{
return NO;
}
....
}
Just as you will in a C program:
ReplyDelete-(void) myVoidMethod {
BOOL res;
res = test();
}
Don't forget to declare / include relevant header (again, just like in a C program).
Also, as daknøk mentioned, Objective-C is a strict superset of C, so what works with C - works with Objective-C.