<?xml version="1.0" encoding="utf-8" standalone="no"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Active questions tagged iphone - Stack Overflow</title><description>most recent 30 from stackoverflow.com</description><managingEditor>noemail@noemail.org (Oleg)</managingEditor><pubDate>Fri, 25 Sep 2026 00:28:21 GMT</pubDate><creativeCommons:license xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">https://creativecommons.org/licenses/by-sa/4.0/rdf</creativeCommons:license><link>https://stackoverflow.com/questions/tagged?tagnames=iphone&amp;sort=active</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>most recent 30 from stackoverflow.com</itunes:subtitle><itunes:owner><itunes:email>noemail@noemail.org</itunes:email></itunes:owner><item><title>iPhone - How to download big amount of files</title><link>https://stackoverflow.com/questions/10615323/iphone-how-to-download-big-amount-of-files</link><category>iphone</category><category>objective-c</category><category>ios</category><category>xcode</category><category>cocoa-touch</category><author>noemail@noemail.org (Oleg)</author><pubDate>Wed, 16 May 2012 09:09:05 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/10615323</guid><description>
            &lt;p&gt;I need to download a number of files from the server. What is the best way to do it?
All documents are stored in NSMutableArray and for each documents there are two files - the document itself and its change log. So what I do is:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;- (void)downloadDocuments:(int)docNumber
{
    NSString *urlString;
    NSURL *url;   
    for (int i=0; i&amp;lt;[items count]; i++) {
        [progressBar setProgress:((float)i/[items count]) animated:YES];
        urlString = [[items objectAtIndex:i] docUrl];
        url = [[NSURL alloc] initWithString:[urlString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
        [self downloadSingleDocument:url];
        urlString = [[items objectAtIndex:i] changeLogUrl];
        url = [[NSURL alloc] initWithString:[urlString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
        [self downloadSingleDocument:url];
    }
    urlString = nil;
    url = nil;
    [self dismissModalViewControllerAnimated:YES];
}

- (void)downloadSingleDocument:(NSURL *)url
{
    NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
    [req addValue:@"Basic XXXXXXX=" forHTTPHeaderField:@"Authorization"];
    downloadConnection = [[NSURLConnection alloc] initWithRequest:req delegate:self startImmediately:YES];
}

- (void)connection:(NSURLConnection *)conn didReceiveResponse:(NSURLResponse *)response
{
    if (conn == downloadConnection) {
        NSString *filename = [[conn.originalRequest.URL absoluteString] lastPathComponent];
        filename = [filename stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

        filePath = [[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:filename];
        [[NSFileManager defaultManager] createFileAtPath:filePath contents:nil attributes:nil];

        file = [[NSFileHandle fileHandleForUpdatingAtPath:filePath] retain];
        if (file)
        {
            [file seekToEndOfFile];
        }
    }

}


- (void)connection:(NSURLConnection *)conn didReceiveData:(NSData *)data
{
    if (conn == downloadConnection) {
        if (file) { 
            [file seekToEndOfFile];
        }
        [file writeData:data];
    }

}


- (void)connectionDidFinishLoading:(NSURLConnection *)conn
{

    if (conn==downloadConnection) {
        [file closeFile];
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And my problem is that only the last file is downloaded. Any suggestions on what I am doing wrong?
Thanks in advance for help!&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>download large video files to iPhone</title><link>https://stackoverflow.com/questions/1234833/download-large-video-files-to-iphone</link><category>iphone</category><author>noemail@noemail.org (nbojja)</author><pubDate>Wed, 5 Aug 2009 18:11:22 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/1234833</guid><description>
            &lt;p&gt;I want to download a large video file to Iphone in my app. I used NSURLConnection and saving the file to disk once it completly downloads the video. &lt;/p&gt;

&lt;p&gt;As my video is large, it is crashing in middle.&lt;/p&gt;

&lt;p&gt;Is there anyway like directly saving the file to disk without keeping it in memory.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>How to download large files in iOS?</title><link>https://stackoverflow.com/questions/6322597/how-to-download-large-files-in-ios</link><category>iphone</category><category>ios</category><author>noemail@noemail.org (Strong Like Bull)</author><pubDate>Sun, 12 Jun 2011 14:56:08 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/6322597</guid><description>
            &lt;p&gt;I'm trying to download files [&gt; 40MB] from web server over HTTP request. To do that I've used the SimpleURLConnection sample provided by the apple. In that sample they only download the image files, so I modified the code to download pdf files and stored it in application's document directory. This is working fine to download small files, but it only download 6.4MB of data if I trying to download large files [&gt;40Mb]. please help me to fix this, &lt;/p&gt;

&lt;p&gt;Thank you,&lt;/p&gt;

&lt;p&gt;FYI:&lt;/p&gt;

&lt;p&gt;code to write file with downloaded data&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  - (void)connection:(NSURLConnection *)theConnection didReceiveData:(NSData *)data
    // A delegate method called by the NSURLConnection as data arrives.  We just 
    // write the data to the file.
{
    #pragma unused(theConnection)
    NSInteger       dataLength;
    const uint8_t * dataBytes;
    NSInteger       bytesWritten;
    NSInteger       bytesWrittenSoFar;

    assert(theConnection == self.connection);

    dataLength = [data length];
    dataBytes  = [data bytes];

    bytesWrittenSoFar = 0;
    do {
        bytesWritten = [self.fileStream write:&amp;amp;dataBytes[bytesWrittenSoFar] maxLength:dataLength - bytesWrittenSoFar];
        assert(bytesWritten != 0);
        if (bytesWritten == -1) {
            [self _stopReceiveWithStatus:@"File write error"];
            break;
        } else {
            bytesWrittenSoFar += bytesWritten;
        }
    } while (bytesWrittenSoFar != dataLength);
}
&lt;/code&gt;&lt;/pre&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">2</re:rank></item><item><title>Compilation Error on #include &lt;algorithm&gt; Algorithm:No such file or Directory</title><link>https://stackoverflow.com/questions/8983915/compilation-error-on-include-algorithm-algorithmno-such-file-or-directory</link><category>iphone</category><author>noemail@noemail.org (Rehman)</author><pubDate>Tue, 24 Jan 2012 08:36:38 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/8983915</guid><description>
            &lt;p&gt;I want to use OpenCV and Open SURF libraries in one project along with ARToolKitPluas then it gives me error &lt;strong&gt;"Algorithm:No such file or Directory"&lt;/strong&gt; which i tried my best to fix but can't. Please Help me. Really i am in trouble and need your help.&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">2</re:rank></item><item><title>iOS browsers double-back (skip page) when returning from external URL redirect in Next.js Pages Router [closed]</title><link>https://stackoverflow.com/questions/80004719/ios-browsers-double-back-skip-page-when-returning-from-external-url-redirect-i</link><category>iphone</category><category>next.js</category><author>noemail@noemail.org (pavan lucky)</author><pubDate>Mon, 21 Sep 2026 16:13:16 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/80004719</guid><description>
            &lt;p&gt;I am experiencing a severe history stack issue in a Next.js (Pages Router) application.
The bug specifically happens on iOS 27 and above across all WebKit browsers (Safari, Chrome, Opera).
Devices running older iOS versions (iOS 26 and below), Android devices, and desktop browsers (macOS/Windows) work perfectly.&lt;/p&gt;
&lt;p&gt;The ScenarioA user is on Page Pre-A.The user navigates natively to Page A (my Next.js page).
On Page A, the user clicks an external link (e.g., a Single Sign-On (SSO) login via a GET request, a banner advertisement, or a basic anchor tag hyperlink).
The browser successfully leaves the app and loads &lt;a href="https://external-site.com" rel="nofollow noreferrer"&gt;https://external-site.com&lt;/a&gt;. On the external website, the user clicks the browser's native Back button.
Expected Behavior is - The user should return cleanly to Page A.Actual Behavior (iOS 27+ Only)
The browser completely skips Page A and lands all the way back on Page Pre-A (an unintended double-back navigation).&lt;/p&gt;
&lt;p&gt;What I have tried ::
I have tested multiple ways to trigger the external redirect from Page A, but iOS 27+ consistently drops Page A from the history stack context upon returning:&lt;/p&gt;
&lt;p&gt;Standard Anchor Tag:jsx&amp;lt;a href=&amp;quot;https://external-sso.com&amp;quot; rel=&amp;quot;noopener noreferrer&amp;quot;&amp;gt;Login Link&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;Window Location Assignment:javascriptwindow.location.href = &amp;quot;https://external-site.com&amp;quot;;&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">-3</re:rank></item><item><title>"Load More" in UITableView</title><link>https://stackoverflow.com/questions/4410257/load-more-in-uitableview</link><category>iphone</category><category>uitableview</category><category>rss</category><author>noemail@noemail.org (Allen)</author><pubDate>Fri, 10 Dec 2010 15:17:02 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/4410257</guid><description>
            &lt;p&gt;I'm loading an RSS feed into a table view.  I'm going to load 10 entries and then would like it say "Load More" in the last cell or somewhere below the last cell, so when the user clicks on Load More, the rest of the RSS feed gets loaded.  Since the RSS comes off of my web site, I can program it to get the 10 or all entries on the server side (using a query string or something).&lt;/p&gt;

&lt;p&gt;The question is how to render a table such that the last cell has a Load More link that the can clicked to call a method to load the rest of the feed (and then when the entire feed is loaded there is no more "Load More" link).&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>Fill a plist with quotes</title><link>https://stackoverflow.com/questions/11780970/fill-a-plist-with-quotes</link><category>iphone</category><category>xcode</category><category>random</category><category>plist</category><author>noemail@noemail.org (user717452)</author><pubDate>Thu, 2 Aug 2012 15:34:09 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/11780970</guid><description>
            &lt;p&gt;I have been doing some work for a while on an iPhone daily quote app, and the bulk of comments I received are to use a plist to store the quotes, and then setup the code to randomly access a quote each day.  I have never really worked with a plist though, and am unsure as to the best way to build a new one filled with quotes.  Could I get some guidance on this?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">1</re:rank></item><item><title>What WordPress Forms/Quiz plugin is good for Desktop and Mobile?</title><link>https://stackoverflow.com/questions/79937984/what-wordpress-forms-quiz-plugin-is-good-for-desktop-and-mobile</link><category>iphone</category><category>wordpress</category><category>forms</category><category>mobile</category><category>tooling-recommendation</category><author>noemail@noemail.org (Janina Elijoki)</author><pubDate>Fri, 8 May 2026 08:29:22 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/79937984</guid><description>
            &lt;p&gt;I'm creating a website in WordPress that will include multiple (5-10) quizzes and I need it to work well on desktop and mobile.&lt;/p&gt;
&lt;p&gt;The quizzes are composed of around 20-40 questions, which the user will answer on a scale of strongly disagree to strongly agree. I'm intending to use radio buttons for this.&lt;/p&gt;
&lt;p&gt;The quizzes have also been split to 5-10 sections and each section will be scored separately and results will be given per section.&lt;br /&gt;
After completing the quiz and getting their results the user should also have the option to upload a pdf or send a pdf to their email of their results.&lt;br /&gt;
The results should contain a summary of the users answer as well as the actual results based on the scoring of the sections.&lt;/p&gt;
&lt;p&gt;Previously I used the Forminator plugin for this and it had all the necessary features required, but I ran into an issue attempting to use the website and fill the form/quiz on iOS devices. The form/quiz was very slow to load and to respond to inputs and as the quiz went on it became impossible to use due to the long load and response times. On desktop and on Android devices the quiz worked fine.&lt;/p&gt;
&lt;p&gt;Has anyone encountered the same problems?&lt;/p&gt;
&lt;p&gt;What other form/quiz plugin would you recommend for me that would also work on iPhone without the performance issues?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>How to determine the current iPhone/device model?</title><link>https://stackoverflow.com/questions/26028918/how-to-determine-the-current-iphone-device-model</link><category>ios</category><category>swift</category><category>iphone</category><author>noemail@noemail.org (The Mach System)</author><pubDate>Thu, 25 Sep 2014 01:08:01 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/26028918</guid><description>
            &lt;p&gt;Is there a way to get the device model name (iPhone 4S, iPhone 5, iPhone 5S, etc) in Swift?&lt;/p&gt;
&lt;p&gt;I know there is a property named &lt;code&gt;UIDevice.currentDevice().model&lt;/code&gt; but it only returns device type (iPod touch, iPhone, iPad, iPhone Simulator, etc).&lt;/p&gt;
&lt;p&gt;I also know it can be done easily in Objective-C with this method:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#import &amp;lt;sys/utsname.h&amp;gt;

struct utsname systemInfo;
uname(&amp;amp;systemInfo);

NSString* deviceModel = [NSString stringWithCString:systemInfo.machine
                          encoding:NSUTF8StringEncoding];
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;But I'm developing my iPhone app in Swift. What is the equivalent way to solve this in Swift?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">568</re:rank></item><item><title>"Safari cannot open the page because the address is invalid" for Google Maps link</title><link>https://stackoverflow.com/questions/27049228/safari-cannot-open-the-page-because-the-address-is-invalid-for-google-maps-lin</link><category>iphone</category><category>google-maps</category><category>mobile-safari</category><author>noemail@noemail.org (Adam Hollock)</author><pubDate>Thu, 20 Nov 2014 20:46:14 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/27049228</guid><description>
            &lt;p&gt;I have an iPhone 4s with iOS7 that doesn't have the Google Maps app installed on it. Whenever I try to navigate to a location link on it, it flashes an error at me that says:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Cannot Open Page
Safari cannot open the page because the address is invalid
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But then the error goes away (without having to hit OK) and the map shows up, and all subsequent Google Maps links load without this error. When I clear my cache, the error shows up again, but only for the first time, and again disappears on its own.&lt;/p&gt;

&lt;p&gt;This is the link in question that I am using, but I have tested it with multiple links and the problem seems to be persistent:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.google.com/maps/place/Kraftwork/@39.971494,-75.127336,17z/data=!3m1!4b1!4m2!3m1!1s0x0:0x6db3f86eca2f8b45?hl=en" rel="nofollow"&gt;https://www.google.com/maps/place/Kraftwork/@39.971494,-75.127336,17z/data=!3m1!4b1!4m2!3m1!1s0x0:0x6db3f86eca2f8b45?hl=en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Any idea what's causing this problem?&lt;/p&gt;

&lt;p&gt;To be specific, this problem exists as a result of straight html and just attempting to click a maps link.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">3</re:rank></item><item><title>Why Safari shows "No Inspectable Applications" during remote debugging with iOS 6 device?</title><link>https://stackoverflow.com/questions/16999186/why-safari-shows-no-inspectable-applications-during-remote-debugging-with-ios</link><category>ios</category><category>iphone</category><category>ipad</category><category>safari</category><category>web-inspector</category><author>noemail@noemail.org (Easwaramoorthy Kanagaraj)</author><pubDate>Sat, 8 Jun 2013 11:44:19 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/16999186</guid><description>
            &lt;p&gt;When I connect my iOS 6 device for remote debugging for testing my mobile web application, The safari develop menu with my device name shows "No Inspectable Applications". &lt;/p&gt;

&lt;p&gt;I have enabled web inspector ON in my device safari device settings.&lt;/p&gt;

&lt;p&gt;Why this is happening?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">101</re:rank></item><item><title>How can i display animated svg file in iOS without using UIWebView</title><link>https://stackoverflow.com/questions/44906479/how-can-i-display-animated-svg-file-in-ios-without-using-uiwebview</link><category>ios</category><category>iphone</category><category>swift</category><category>svg-animate</category><author>noemail@noemail.org (Mihir Mehta)</author><pubDate>Tue, 4 Jul 2017 12:49:24 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/44906479</guid><description>
            &lt;p&gt;Currently i am using &lt;code&gt;UIWebView&lt;/code&gt; to display animated svg file in my native iOS application. &lt;/p&gt;

&lt;p&gt;This works fine except the CPU usage is constantly being on higher side as long as app is in foreground. &lt;/p&gt;

&lt;p&gt;Is there any better way to display svg file without using &lt;code&gt;UIwebView&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;I have already tried many third party libraries but all works only with static svg file not animated svgs &lt;/p&gt;

&lt;p&gt;I have tried following &lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/mchoe/SwiftSVG" rel="noreferrer"&gt;https://github.com/mchoe/SwiftSVG&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/exyte/Macaw" rel="noreferrer"&gt;https://github.com/exyte/Macaw&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/onmyway133/Snowflake" rel="noreferrer"&gt;https://github.com/onmyway133/Snowflake&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/SVGKit/SVGKit" rel="noreferrer"&gt;https://github.com/SVGKit/SVGKit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My app supports &lt;strong&gt;iOS 9&lt;/strong&gt; and above , My code is in &lt;strong&gt;Swift3&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here is the link of on of the svg file that i am trying to display &lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.mediafire.com/file/04ojy6t4e3c41lv/03d.svg" rel="noreferrer"&gt;http://www.mediafire.com/file/04ojy6t4e3c41lv/03d.svg&lt;/a&gt;&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">15</re:rank></item><item><title>UIManagedDocument example / tutorial</title><link>https://stackoverflow.com/questions/8705964/uimanageddocument-example-tutorial</link><category>iphone</category><category>objective-c</category><category>core-data</category><category>icloud</category><category>uimanageddocument</category><author>noemail@noemail.org (adamteale)</author><pubDate>Mon, 2 Jan 2012 22:26:45 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/8705964</guid><description>
            &lt;p&gt;I have been trying very unsuccessfully to create a simple &lt;code&gt;UIManagedDocument&lt;/code&gt; library style application (separate documents saved to iCloud).&lt;/p&gt;

&lt;p&gt;I am confused with the following:&lt;/p&gt;

&lt;p&gt;Do I subclass &lt;code&gt;UIManagedDocument&lt;/code&gt; and set up the &lt;code&gt;persistentStoreCoordinator&lt;/code&gt;, &lt;code&gt;ManagedObjectModel&lt;/code&gt; &amp;amp; &lt;code&gt;ManagedObjectContext&lt;/code&gt; within this subclass, or are these supposed to be configured within the &lt;code&gt;AppDelegate&lt;/code&gt; (and if so, how do I go about refreshing the &lt;code&gt;persistentStoreCoordinator&lt;/code&gt; to look at the new file - it seems that once that has read a &lt;code&gt;persistentStore&lt;/code&gt; that I can't get it to read a new persistent store)?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">7</re:rank></item><item><title>FBPermissionDialog bug, showing "Welcome to Facebook" page</title><link>https://stackoverflow.com/questions/2845701/fbpermissiondialog-bug-showing-welcome-to-facebook-page</link><category>iphone</category><category>cocoa-touch</category><category>fbconnect</category><author>noemail@noemail.org (Oliver)</author><pubDate>Sun, 16 May 2010 22:17:19 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/2845701</guid><description>
            &lt;p&gt;I'm experiencing a weird bug that I can replicate pretty consistently with the FBConnect iPhone SDK, more specifically with the class FBPermissionDialog. The result is that instead of seeing the standard extended permissions dialog, the user is shown this:&lt;/p&gt;

&lt;p&gt;&lt;img src="https://i.sstatic.net/ANscy.png" alt="enter image description here"&gt;&lt;/p&gt;

&lt;p&gt;The only way around it is for the user to delete the app and reinstall.&lt;/p&gt;

&lt;p&gt;This is how I have replicated it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;On first login, the user is asked for extended permissions on something (the dialog displays correctly). The user declines the permission. User quits the app.&lt;/li&gt;
&lt;li&gt;The user relaunches the app and since we still need the permission, we ask again.&lt;/li&gt;
&lt;li&gt;Instead of the permission dialog, the user is shown the "Welcome to Facebook" page.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The only way for the user to get asked again is to delete the app and reinstall. Has anyone else experienced this? Is there a workaround? Here is the code I use to ask for permission, I believe it's pretty standard.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;// Create a permission dialog
FBPermissionDialog *dialog = [[[FBPermissionDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.permission = @"read_stream";
[dialog show];
&lt;/code&gt;&lt;/pre&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">1</re:rank></item><item><title>NSArchiver vs NSKeyedArchiver performance</title><link>https://stackoverflow.com/questions/8806380/nsarchiver-vs-nskeyedarchiver-performance</link><category>iphone</category><category>objective-c</category><category>ios</category><category>cocoa-touch</category><category>nskeyedarchiver</category><author>noemail@noemail.org (Ben Quan)</author><pubDate>Tue, 10 Jan 2012 16:06:12 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/8806380</guid><description>
            &lt;p&gt;Why is NSKeyedArchiver performance so poor? The size doubles vs using NSArchiver.&lt;/p&gt;

&lt;p&gt;I am encoding an NSMutableArray of objects with the following line&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;BOOL result = [NSArchiver archiveRootObject:self.appDataObject.materias toFile:archivePath];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;the NSMutableArray contain custom objects that have their corresponding encodeWithCoder and initWithCoder&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;-(void)encodeWithCoder:(NSCoder *)aCoder
{

    [aCoder encodeObject: _fileName];
    [aCoder encodeObject: _categoria];
    [aCoder encodeObject: _materia];
    [aCoder encodeObject: _nombre];

    [aCoder encodeObject: _position];
    [aCoder encodeValueOfObjCType:@encode(BOOL) at:&amp;amp;_favorite];

}

-(id)initWithCoder:(NSCoder *)aDecoder
{
    if (self=[super init]) {
        [self setFileName:[aDecoder decodeObject]];
        [self setCategoria:[aDecoder decodeObject]];
        [self setMateria:[aDecoder decodeObject]];
        [self setNombre:[aDecoder decodeObject]];

        [self setPosition:[aDecoder decodeObject]];
        [aDecoder decodeValueOfObjCType:@encode(BOOL) at:&amp;amp;_favorite];
    }

    return self;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;it works fine as it saves the file properly and then I am able to unarchive it. They are around 3000 objects and the output file is about &lt;strong&gt;900kB&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The problem occurs when I change my archiving line to:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;BOOL result = [NSKeyedArchiver archiveRootObject:self.appDataObject.materias toFile:archivePath];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Everything magically works &lt;strong&gt;BUT&lt;/strong&gt; the file size more than doubles to &lt;strong&gt;2MB&lt;/strong&gt;!&lt;/p&gt;

&lt;p&gt;Why am I asking this? because I am developing a iOS application and therefore lose support of NSArchiver.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">5</re:rank></item><item><title>Perspective correction of UIImage from Points [closed]</title><link>https://stackoverflow.com/questions/8235288/perspective-correction-of-uiimage-from-points</link><category>iphone</category><category>ios</category><category>image-processing</category><category>quartz-2d</category><author>noemail@noemail.org (Jakob Halskov)</author><pubDate>Tue, 22 Nov 2011 23:16:50 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/8235288</guid><description>
            &lt;p&gt;I'm working on an app where I'll let the user take a picture of a business card or photograph.&lt;/p&gt;
&lt;p&gt;The user will then mark the four corners of the object (which they took a picture of) like it is seen in a many document/image/business card scanning apps:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://i.sstatic.net/PCPxF.jpg" alt="enter image description here" /&gt;&lt;/p&gt;
&lt;p&gt;How do I crop and fix the perspective according to these four points? I've been searching for days and looked at several image proccessing libraries without any luck.&lt;/p&gt;
&lt;p&gt;Any one who can point me in the right direction?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">16</re:rank></item><item><title>NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)</title><link>https://stackoverflow.com/questions/30420345/nsurlconnection-cfurlconnection-http-load-failed-kcfstreamerrordomainssl-9813</link><category>objective-c</category><category>iphone</category><category>http</category><category>nsurlrequest</category><category>nsmutableurlrequest</category><author>noemail@noemail.org (Ruchir Shah)</author><pubDate>Sun, 24 May 2015 05:23:49 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/30420345</guid><description>
            &lt;p&gt;I am trying for an HTTP call on https. Here is my code snippet. &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;NSMutableURLRequest *request = [[NSMutableURLRequest alloc]
                                initWithURL:[NSURL
                                             URLWithString:@"https://testservice.fiamm.com/token"]];

[request setHTTPMethod:@"POST"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-type"];

NSString *postString = @"username=TestIphone&amp;amp;Password=T3st1ph$n&amp;amp;Grant_type=password";

[request setValue:[NSString stringWithFormat:@"%d", [postString length]] forHTTPHeaderField:@"Content-length"];

[request setHTTPBody:[postString
                      dataUsingEncoding:NSUTF8StringEncoding]];

// Fetch the JSON response
NSData *urlData;
NSURLResponse *response;
NSError *error;

// Make synchronous request
urlData = [NSURLConnection sendSynchronousRequest:request
                                returningResponse:&amp;amp;response
                                            error:&amp;amp;error];

// Construct a String around the Data from the response
NSString *strFiamm = [[NSString alloc] initWithData:urlData encoding:NSUTF8StringEncoding];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;When I try in hurl or postman I get response proper but when I try in my code I get this error.&lt;/p&gt;

&lt;p&gt;NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)&lt;/p&gt;

&lt;p&gt;Any help or suggestions appreciated.!&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">4</re:rank></item><item><title>How to get CSRF token in iOS?</title><link>https://stackoverflow.com/questions/14298044/how-to-get-csrf-token-in-ios</link><category>iphone</category><category>ios</category><category>django</category><author>noemail@noemail.org (Joey Franklin)</author><pubDate>Sat, 12 Jan 2013 21:19:43 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/14298044</guid><description>
            &lt;p&gt;So I'm trying to POST form data to my colleague's site in order login (simple username and password) from my iPhone app.  However, it appears that I need a CSRF Token in order to post.  I've done a lot of research on this and from what I can obtain this token from the &lt;code&gt;csrftoken cookie&lt;/code&gt; ( I read that here: &lt;a href="https://docs.djangoproject.com/en/dev/ref/contrib/csrf/" rel="noreferrer"&gt;https://docs.djangoproject.com/en/dev/ref/contrib/csrf/&lt;/a&gt;) using a GET request.  The problem is, I don't know what exactly to do with this GET request? Where do I get from?&lt;/p&gt;

&lt;p&gt;Here is the code so far for my post request:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;NSURL *url = [NSURL URLWithString:SERVER_ADDRESS];
NSData* postData= //Some form data
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:[NSString stringWithFormat:@"%d", postData.length] forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

[request addValue:token forHTTPHeaderField:@"X-CSRFToken"];  //Where do I get this token from

NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
                                                              delegate:self];
[connection start];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I know there are a lot of similar posts to this on StackOverflow, but I haven't found any with an answer that seems complete.  Usually it just directs me to the link above which is only filled with AJAX related info.  Help would be much appreciated!&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">11</re:rank></item><item><title>How to change iPhone deployment target</title><link>https://stackoverflow.com/questions/60988633/how-to-change-iphone-deployment-target</link><category>ios</category><category>iphone</category><category>flutter</category><category>dart</category><category>podfile</category><author>noemail@noemail.org (delmin)</author><pubDate>Thu, 2 Apr 2020 09:44:42 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/60988633</guid><description>
            &lt;p&gt;I have updated flutter today also with Xcode and I'm getting an error when trying to run my app on IOS&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;warning: The iOS Simulator deployment target
'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported
deployment target versions is 8.0 to 13.4.99. (in target
'gRPC-C++-gRPCCertificates-Cpp' from project 'Pods')&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;When I go to a runner from Xcode I can only change it to min version 8&lt;/p&gt;
&lt;p&gt;&lt;a href="https://i.sstatic.net/vwwrn.png" rel="noreferrer"&gt;&lt;img src="https://i.sstatic.net/vwwrn.png" alt="enter image description here" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Flutter doctor result&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[✓] Flutter (Channel stable, v1.12.13+hotfix.9-pre.2, on Mac OS X
10.15.4 19E266, locale en-GB)
• Flutter version 1.12.13+hotfix.9-pre.2 at /Users/peter/development/tools/flutter
• Framework revision f139b11009 (3 days ago), 2020-03-30 13:57:30 -0700
• Engine revision af51afceb8
• Dart version 2.7.2&lt;/p&gt;
&lt;p&gt;[✓] Android toolchain - develop for Android devices (Android SDK
version 29.0.2)
• Android SDK at /Users/peter/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211)
• All Android licenses accepted.&lt;/p&gt;
&lt;p&gt;[✓] Xcode - develop for iOS and macOS (Xcode 11.4)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 11.4, Build version 11E146
• CocoaPods version 1.8.4&lt;/p&gt;
&lt;p&gt;[✓] Android Studio (version 3.6)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 44.0.2
• Dart plugin version 192.7761
• Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211)&lt;/p&gt;
&lt;p&gt;[✓] IntelliJ IDEA Community Edition (version 2019.3)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 42.1.4
• Dart plugin version 193.5731&lt;/p&gt;
&lt;p&gt;[✓] Connected device (1 available)
• iPhone 11 Pro Max • 269B6B4A-E1E4-4461-B0F8-02DA3D21E477 • ios • com.apple.CoreSimulator.SimRuntime.iOS-13-4 (simulator)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;So how can I change the iPhone deployment target to a higher version in
flutter?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Updating the android studio gets rid of the error.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">9</re:rank></item><item><title>xcodebuild generating empty compile_commands.json</title><link>https://stackoverflow.com/questions/25444277/xcodebuild-generating-empty-compile-commands-json</link><category>iphone</category><category>xcode5</category><category>code-analysis</category><category>xctool</category><category>oclint</category><author>noemail@noemail.org (iGagan Kumar)</author><pubDate>Fri, 22 Aug 2014 09:54:02 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/25444277</guid><description>
            &lt;p&gt;I am using following commands to use the oclint with xcode 5- &lt;/p&gt;

&lt;p&gt;Step1: xcodebuild -target OClintDemo -configuration Debug -scheme OClintDemo -sdk iphonesimulator&lt;br&gt;
Step2: OClintDemo jenkins$ xcodebuild -sdk iphonesimulator | tee xcodebuild.log&lt;br&gt;
Step3: oclint-xcodebuild xcodebuild.log&lt;br&gt;
Step4: oclint-json-compilation-database -- -o=report.html &lt;/p&gt;

&lt;p&gt;but i am getting compile_commands.json empty file, and report.html contains following-
OCLint Report Summary: TotalFiles=0 FilesWithViolations=0 P1=0 P2=0 P3=0 [OCLint (&lt;a href="http://oclint.org" rel="noreferrer"&gt;http://oclint.org&lt;/a&gt;) v0.7]   &lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">7</re:rank></item><item><title>Azure Point to Site VPN connection from IOS / IPad / IPhone [closed]</title><link>https://stackoverflow.com/questions/47455560/azure-point-to-site-vpn-connection-from-ios-ipad-iphone</link><category>ios</category><category>iphone</category><category>azure</category><category>ipad</category><category>azure-virtual-network</category><author>noemail@noemail.org (Murray Foxcroft)</author><pubDate>Thu, 23 Nov 2017 12:25:52 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/47455560</guid><description>
            &lt;p&gt;Is it possible to connect from an IOS device to an Azure Point to Site VPN? (Yes, I know it is unsupported). However, I have seen it suggested that SSTP could be used, but cant find a concrete example. &lt;/p&gt;

&lt;p&gt;Can anyone shed some light on if this is actually possible - or suggest alternatives?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">-1</re:rank></item><item><title>While I am entering text in one field, it is diplaying the same text in some other textfield too</title><link>https://stackoverflow.com/questions/10650770/while-i-am-entering-text-in-one-field-it-is-diplaying-the-same-text-in-some-oth</link><category>iphone</category><category>uitableview</category><category>uitextfield</category><author>noemail@noemail.org (iosDev)</author><pubDate>Fri, 18 May 2012 10:17:24 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/10650770</guid><description>
            &lt;p&gt;When I am entering text in textfield 1, that text is also displayed in textfield 9.&lt;/p&gt;
&lt;p&gt;Here is some code what I did to create textfield in tableview cell.&lt;/p&gt;
&lt;p&gt;I added textfield in tableview cell, like below in the &lt;code&gt;cellforRowatintexpath&lt;/code&gt; method.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @&amp;quot;myCell&amp;quot;;
    //UILabel* nameLabel = nil;
    cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if(cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }
    else
    {
        UILabel *titleLbl = (UILabel *)[cell viewWithTag:1];
        [titleLbl removeFromSuperview];
    }
    nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(7.0, 10.0, 160.0, 44.0)];
    nameLabel.text = [labels objectAtIndex:indexPath.row];
    nameLabel.font = [UIFont boldSystemFontOfSize:12];
    nameLabel.lineBreakMode = UILineBreakModeWordWrap;
    nameLabel.tag = 1;
    nameLabel.numberOfLines = 0;
    [nameLabel sizeToFit];
    CGSize expectedlabelsize = [nameLabel.text sizeWithFont:nameLabel.font constrainedToSize:nameLabel.frame.size lineBreakMode:UILineBreakModeWordWrap];
    CGRect newFrame = nameLabel.frame;
    newFrame.size.height = expectedlabelsize.height;
    [cell.contentView addSubview: nameLabel];
    [nameLabel release];


    // Adding textfield to tableview cell.
    tv = [[UITextField alloc] initWithFrame:CGRectMake(nameLabel.frame.origin.x + nameLabel.frame.size.width + 2, 10.0, cell.contentView.bounds.size.width, 30)];
    tv.tag = indexPath.row + 2;
    //tv.text = [labels objectAtIndex:indexPath.row];
    tv.font = [UIFont boldSystemFontOfSize:12];


    // This method will take text from textfield of tableview cell using their individual tag
    [tv addTarget:self action:@selector(getTextFieldValue:) forControlEvents:UIControlEventEditingDidEnd];

    [cell.contentView addSubview:tv];

    [tv setDelegate:self];

    [tv release];

    return cell;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And here is the getTextFieldValue method:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;- (void) getTextFieldValue:(UITextField *)textField {

    if (textField.tag == 2) {

        //NSString *value1 = [NSString stringWithFormat:@&amp;quot;%@&amp;quot;, textField.text];
        //NSLog(@&amp;quot;value1 is %@&amp;quot;, value1);.

        NSLog(@&amp;quot;2---&amp;gt;%@&amp;quot;, textField.text);
    }else if(textField.tag == 3) {
        NSLog(@&amp;quot;3---&amp;gt;%@&amp;quot;, textField.text);
    }else if(textField.tag == 4) {
        NSLog(@&amp;quot;4---&amp;gt;%@&amp;quot;, textField.text);
        }
    else if(textField.tag == 5) {
        NSLog(@&amp;quot;5---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 6) {
        NSLog(@&amp;quot;6---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 7) {
        NSLog(@&amp;quot;7---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 8) {
        NSLog(@&amp;quot;8---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 9) {
        NSLog(@&amp;quot;9---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 10) {
        NSLog(@&amp;quot;10---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 11) {
            NSLog(@&amp;quot;11---&amp;gt;%@&amp;quot;, textField.text);
    }
    else if(textField.tag == 12) {
            NSLog(@&amp;quot;12---&amp;gt;%@&amp;quot;, textField.text);
    }
}
&lt;/code&gt;&lt;/pre&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">-1</re:rank></item><item><title>verification failed as the authority is invalid</title><link>https://stackoverflow.com/questions/20073426/verification-failed-as-the-authority-is-invalid</link><category>iphone</category><category>ios-provisioning</category><category>enterprise-distribution</category><author>noemail@noemail.org (user3009033)</author><pubDate>Tue, 19 Nov 2013 13:54:58 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/20073426</guid><description>
            &lt;p&gt;I'm trying to resign an ipa which is already signed with the developer certificate.
Now I'm resigning with the enterprise distribution certificate.
I've got proper provisioning profile, ios_distribution certificate to sign the app.
I'm following this answer &lt;a href="https://stackoverflow.com/questions/6896029/re-sign-ipa-iphone"&gt;Re-sign IPA (iPhone)&lt;/a&gt; for the resigning steps.
With this I'm successfully able to resign the ipa but when I try to install this via itools, I'm getting this error: verification failed as the authority is invalid.&lt;/p&gt;

&lt;p&gt;Another thing is I'm resigning with the enterprise distribution certificate but still when i try to install the resigned ipa directly (keeping resigned ipa on dropbox) getting this error "safari can't download this file" which I believe should come when the app is not signed with the enterprise distribution certificate and someone try to download that file directly on iphone (not via appstore or itunes).This certificate says I can distribute this app outside the appstore, so I'm confused what I'm really missing.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>Iphone Ipad QA testing process [closed]</title><link>https://stackoverflow.com/questions/3687831/iphone-ipad-qa-testing-process</link><category>iphone</category><category>testing</category><author>noemail@noemail.org (yeahdixon)</author><pubDate>Fri, 10 Sep 2010 19:49:22 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/3687831</guid><description>
            &lt;p&gt;I'm curious about how people test their apps In general. &lt;/p&gt;

&lt;p&gt;I recently uploaded an app and wanted to reach as many iOS' as possible so i targeted it to 3.0. I did test on iphone 3, iphone 4 and 3GS but found out that there was an obscure sizing of a button image on a specific ios version.&lt;/p&gt;

&lt;p&gt;In general how do you guys test for different versions? 
Do people actually keep 3, 3gs and 4. Then on each, do people test on the various versions of ios within each of the phones.  Yuck, anything to make this easier?&lt;/p&gt;

&lt;p&gt;For the simulator, each xcode download contains only latest os and hardware to target. It would be nice if it could keep older os versions on the simulator to test with, is this possible?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">0</re:rank></item><item><title>Getting this error when starting a react native app for iphone</title><link>https://stackoverflow.com/questions/77677937/getting-this-error-when-starting-a-react-native-app-for-iphone</link><category>iphone</category><category>react-native</category><category>expo</category><author>noemail@noemail.org (Siddhant Mishra)</author><pubDate>Mon, 18 Dec 2023 08:51:15 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/77677937</guid><description>
            &lt;p&gt;iOS Bundling failed 523ms
error: node_modules/expo-router/_ctx.ios.tsx: node_modules/expo-router/_ctx.ios.tsx:Invalid call at line 6: // @ts-expect-error
process.env.EXPO_ROUTER_IMPORT_MODE_IOS
Fourth argument of &lt;code&gt;require.context&lt;/code&gt; should be an optional string &amp;quot;mode&amp;quot; denoting how the modules will be resolved.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">3</re:rank></item><item><title>Avoiding atan2 in calculating angles - atan2 precision</title><link>https://stackoverflow.com/questions/8769575/avoiding-atan2-in-calculating-angles-atan2-precision</link><category>iphone</category><category>objective-c</category><category>c</category><category>math</category><category>geometry</category><author>noemail@noemail.org (wczekalski)</author><pubDate>Sat, 7 Jan 2012 12:08:53 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/8769575</guid><description>
            &lt;p&gt;we, developers very often need to calculate angle to perform rotation. Usually we can use atan2() function but sometimes we need more precision. What do you do then?&lt;/p&gt;

&lt;p&gt;I know that theoretically atan2 is precise but in my system (iOS) it's inaccurate about 0.05 radians so it's big difference. That's not just my problem. I've seen similar opinions.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">4</re:rank></item><item><title>iphone web develop mode (inspect element) on windows safari</title><link>https://stackoverflow.com/questions/13800460/iphone-web-develop-mode-inspect-element-on-windows-safari</link><category>iphone</category><category>safari</category><category>element</category><category>inspect</category><author>noemail@noemail.org (Alexander)</author><pubDate>Mon, 10 Dec 2012 11:54:25 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/13800460</guid><description>
            &lt;p&gt;I found two ways how i can easier develop web app for iPhone.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://moduscreate.com/enable-remote-web-inspector-in-ios-6/" rel="nofollow"&gt;http://moduscreate.com/enable-remote-web-inspector-in-ios-6/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://webdesign.tutsplus.com/tutorials/workflow-tutorials/quick-tip-using-web-inspector-to-debug-mobile-safari/" rel="nofollow"&gt;http://webdesign.tutsplus.com/tutorials/workflow-tutorials/quick-tip-using-web-inspector-to-debug-mobile-safari/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But I can't do it on Windows, because for windows is only Safari 5. Have you any ideas how I can solve this problem?&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">1</re:rank></item><item><title>Bootstrap modal not working on iPhone</title><link>https://stackoverflow.com/questions/49409621/bootstrap-modal-not-working-on-iphone</link><category>javascript</category><category>jquery</category><category>html</category><category>iphone</category><author>noemail@noemail.org (Jota)</author><pubDate>Wed, 21 Mar 2018 14:55:35 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/49409621</guid><description>
            &lt;p&gt;This is the modal:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;div class="modal fade" id="modalInsertAgression" tabindex="-1" role="dialog" aria-labelledby="modalInsertAgression" aria-hidden="true"&amp;gt;
&amp;lt;div class="modal-dialog" role="document"&amp;gt;
    &amp;lt;div class="card"&amp;gt;

        &amp;lt;form id="formInsertarAgresion" action="{% url 'insertarAgresion' %}" role="form"&amp;gt;{% csrf_token %}
            &amp;lt;div class="card-header card-header-icon" data-background-color="rose"&amp;gt;
                &amp;lt;i class="material-icons"&amp;gt;place&amp;lt;/i&amp;gt;
            &amp;lt;/div&amp;gt;

            &amp;lt;div class="card-content"&amp;gt;
                &amp;lt;h4 class="card-title"&amp;gt;Test&amp;lt;/h4&amp;gt;
                &amp;lt;p class="text-center" id="msgModalInsertAgression"&amp;gt;&amp;lt;/p&amp;gt;
                &amp;lt;br&amp;gt;

                &amp;lt;div class="input-group"&amp;gt;
                    &amp;lt;span class="input-group-addon"&amp;gt;&amp;lt;i class="material-icons"&amp;gt;date_range&amp;lt;/i&amp;gt;&amp;lt;/span&amp;gt;
                    &amp;lt;div class="form-group"&amp;gt;{{ agresionForm.fecha }}&amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;

            &amp;lt;div class="card-footer pull-right"&amp;gt;
                &amp;lt;button id="btnInsertModalInsertAgression" type="submit" class="btn btn-fill btn-rose"&amp;gt;Insertar&amp;lt;/button&amp;gt;
                &amp;lt;button id="btnCloseModalInsertAgression" type="button" class="btn btn-default btn-fill" data-dismiss="modal"&amp;gt;Cancelar&amp;lt;/button&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/form&amp;gt;

    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;I open it with:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$("#modalInsertAgression").show();
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;It does not work on iPhone, when the modal appears the background keeps black and it lost the focus, you can not click in the modal or the buttons.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Edit: The modal only works with &lt;code&gt;$("#modalInsertAgression").modal({backdrop: false});&lt;/code&gt; but I do not want to lose the black background...&lt;/strong&gt;&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">1</re:rank></item><item><title>Can you do a Ping or traceroute command on iPhone? [closed]</title><link>https://stackoverflow.com/questions/3212038/can-you-do-a-ping-or-traceroute-command-on-iphone</link><category>iphone</category><category>traceroute</category><author>noemail@noemail.org (mootymoots)</author><pubDate>Fri, 9 Jul 2010 11:12:12 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/3212038</guid><description>
            &lt;p&gt;Odd question, I know I can do this in OS X Objective C, but can you run a ping against an IP or URL on the iPhone? Is the framework there to support it? Same with doing a traceroute.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">6</re:rank></item><item><title>Xcode/Simulator: How to run older iOS version?</title><link>https://stackoverflow.com/questions/4262018/xcode-simulator-how-to-run-older-ios-version</link><category>ios</category><category>objective-c</category><category>iphone</category><category>xcode</category><category>ipad</category><author>noemail@noemail.org (Shai UI)</author><pubDate>Tue, 23 Nov 2010 23:16:44 GMT</pubDate><guid isPermaLink="false">https://stackoverflow.com/q/4262018</guid><description>
            &lt;p&gt;I'm thinking of upgrading to iOS SDK 4.2. But what I'm wondering is if I'll still be able to run the simulator as iOS 3.2. This is because I'm creating iAds for iPad but I still want to check if my program will run with iOS 3.2.&lt;/p&gt;

&lt;p&gt;Note: I have seen a similar post to this in the past, but they weren't really helpful in giving the exact steps in how this could be done.&lt;/p&gt;

        </description><re:rank scheme="https://stackoverflow.com" xmlns:re="http://purl.org/atompub/rank/1.0">200</re:rank></item></channel></rss>