0

我正在使用此代码在 iOS 中截屏:

- (UIImage*)screenshot 
{
    CGSize imageSize = [[UIScreen mainScreen] bounds].size;
    if (NULL != UIGraphicsBeginImageContextWithOptions)
        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
    else
        UIGraphicsBeginImageContext(imageSize);

    CGContextRef context = UIGraphicsGetCurrentContext();

    // Iterate over every window from back to front
    for (UIWindow *window in [[UIApplication sharedApplication] windows]) 
    {
        if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])
        {
            CGContextSaveGState(context);
            CGContextTranslateCTM(context, [window center].x, [window center].y);
            CGContextConcatCTM(context, [window transform]);
            CGContextTranslateCTM(context,
                  -[window bounds].size.width * [[window layer] anchorPoint].x,
                  -[window bounds].size.height * [[window layer] anchorPoint].y);

            [[window layer] renderInContext:context];

            CGContextRestoreGState(context);
        }
    }

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return image;
}

当我的应用程序在后台时运行代码。

问题是它总是截取我的应用程序的屏幕截图,而我希望它截取当前屏幕。

可能吗?如何?

- 编辑 -

实际上这是可能的,(例如,参见这个appstore 应用程序)。那么剩下的问题是怎么做?

4

3 回答 3

7

不。

代码总是对您的应用程序进行截图是有原因的:它是您的应用程序。

想象一下后台应用程序能够截取当前屏幕的屏幕截图对隐私的影响:

我,用户,在使用Bob 的恶意资金窃取程序时刚刚按下主页按钮,然后切换到查看我的电子邮件 - 这恰好是我银行的账单,其中包括我的帐号,ATM 卡号,和我的 PIN(这不是一个很好的银行)。

现在,我刚刚使用的恶意应用程序决定现在是看看我在做什么的好时机。它截取我当前屏幕的屏幕截图,并将其上传到服务器。

第二天,我所有的钱都花光了,我起诉苹果。

于 2013-05-23T18:56:36.920 回答
3

由于应用程序的沙盒,这是不可能的。应用程序不应获取其他第三方应用程序的状态。

于 2013-05-23T19:31:52.723 回答
1

if by entering the back ground you are referring to when a user minimizes the app, then no it is impossible for the fact apple would not allow you to make an application that takes a picture of the user's device from out side your app

but i may be misunderstanding your question, if you post 2 screen shots of the before and after you transition from foreground to background so i can see where you want to take the screen shot of, i can give you a better response :D

于 2013-05-23T19:02:50.117 回答