Hi,
I am using Fusion 2.5 Dev and iOS export module on a Windows 8.1 64 bits, when I build in Fusion 2.5 a blank application it creates the zip file.
I moved it to a Mac OS X 10.6.8 Snow Leopard Desktop with Xcode 3.2.6 and iOS SDK for 4.3, unziped and opened the ___.xcodeproj
When I pressed "Build and Run" I got 55 Warnings and 77 errors most of them:
error: Expected unqualified-id before "++" token
Related to line
id++;
error: Expected unqualified-id before "=" token
Related to lines:
id=(int) [pArray get:n];
id=( ((int)pHo->hoCreationId)<<16)|(((int)pe->evtIdentifier)&&0x0000FFFF); //;Prend le numero de l'objet en collision
error: Cannot find protocol declaration for 'NSURLConnectionDelegate'
Related to line:
@interface CRunGet : CRunExtension <NSURLConnectionDelegate>
error: invalid conversion from 'int' to 'UILineBreakMode'
Related to lines:
CGSize size = [text sizeWithFont:[font createFont] constrainedToSize:CGSizeMake(maxWidth, 100000) lineBreakMode:0];
error: request for member 'showsCompletionBanner' in 'achievement', which is of non-class type 'GKAchievement*'
Related to lines:
achievement.showsCompletionBanner=YES;
error: invalid conversion from 'int' to 'UILineBreakMode'
Related to lines:
CGSize size = [title sizeWithFont:[titleFont createFont] constrainedToSize:CGSizeMake(1000, 100000) lineBreakMode:0];
error: invalid conversion from 'int' to 'UIButtonType'
Related to lines:
button=[UIButton buttonWithType:type+1];
and much more.
Why am I getting all this errors?