我正在用户/文档文件夹中付款后进行应用内购买和下载数据.Apple拒绝了我的应用程序,它表示您没有遵循iOS数据存储指南.
任何人都可以帮助我在我的应用程序中实现iCloud功能吗?
谢谢

如何在iOS目标c中实现这种动画.
目前我已经实现了"CABasicAnimation",但仍然无法实现这一目标.
任何建议?
谢谢
嗨,我想使用NSData或使用webservice提供的数据字节来编写pdf ?
    -(NSData *)saveData:(NSData*)fileData fileName:(NSString *)fileName fileType:(NSString *)fileType
{
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
    NSString *documentsDir = [paths objectAtIndex:0];
    NSString *filePath = [NSString stringWithFormat:@"%@/%@.%@",documentsDir,fileName,fileType];
    NSData* downloadData = [NSData dataWithData:fileData];
    [fileManager createFileAtPath:filePath contents:downloadData attributes:nil];
}
Run Code Online (Sandbox Code Playgroud)
我正在使用它,但它没有工作它给我错误"它可能已损坏或使用预览无法识别的文件格式." 打开上面代码创建的pdf.
嗨我想获得任何控制的触摸位置/点或任何触摸发生的地方.
为此,我实现了这个,但我没有得到正确的接触点.
   // Create gesture recognizer, notice the selector method
UITapGestureRecognizer *oneFingerTwoTaps =
[[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(oneFingerTwoTaps)] autorelease];
oneFingerTwoTaps.delegate=self;
// Set required taps and number of touches
[oneFingerTwoTaps setNumberOfTapsRequired:1];
[oneFingerTwoTaps setNumberOfTouchesRequired:1];
[[self view] addGestureRecognizer:oneFingerTwoTaps];
Run Code Online (Sandbox Code Playgroud)
和
 - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
    CGPoint point= [touch locationInView:touch.view];
        NSLog(@"Point - %f, %f",point.x,point.y);
    NSLog(@"Touch");
    return NO; // handle the touch
}
Run Code Online (Sandbox Code Playgroud)
当我试图击中任何UIButton,UIImage,UITableView它没有给我正确的命中点是否有任何我做错的事情?请帮我.谢谢.
有没有办法改变UIPopoverController iPhone/iPad的边框颜色?
谢谢
我是黑莓环境的新开发者.当前选择或取消选择的控件是否有焦点和丢失焦点事件?
请给我一些喜欢或举例.
谢谢.