I am using this code for Page curl effect ....Its work fine in simulator and device... But its not (setType:@\"pageCurl\") apple documented api , this caused it to be reject
Must the stop-at-mide-point page curl effect be used? The easiest method is to replace page curl by a simpler animation (e.g. slide-out), or just curl the whole view up.
You may try to cheat by constructing the string at run time e.g.
[animation setType:[@"page" stringByAppendingString:@"Curl"]];
although you're still using an undocumented method.