Discuss hardware-specific topics related to iPhone.

iPhone Documentation

Posts under iPhone tag

543 Posts
Sort by:
Post not yet marked as solved
0 Replies
76 Views
I have a NetGear Orbi 6e Mesh network. With the latest beta update, I can’t connect to the main 2.4, 5, 6 network. I can only connect to the IOT network which is 2.4 and 5 and lower security. Non beta iPhones and iPads don’t have a problem connecting. The problem is iPhone and iPad.
Posted
by Vonnegut.
Last updated
.
Post not yet marked as solved
1 Replies
186 Views
Hello Apple I'm a software developer. My team and I, are using Expo framework to build cross-plateform mobile apps (Link to Expo website: https://expo.dev/). In brief words, Expo let us develop apps, and publish them in Android and iOS in an easy way, It provides a free app called "Expo Go". available in App Store. Any iOS user can simply download this app, and run the developed app inside it, by scanning a QR code. Recently, we've made a demo and our manager, tried to execute the app for the first time, using his Iphone device. He succeeded to run the app, for about 30 minutes. After that, he got a call, and his phone turned off suddenly!, and its not working anymore, even with recharge. Now, he thinks its due to our developed app or the Expo Go app! Would you please help us to investigate this trouble? We typically looking for a log history to check what happened exactly right before this incident. We can provide you with some coordinates about the device, or anything else needed. Note: We run the app on Ipad and android devices and didn't experienced any issue like this one. We would, also, know what do you think about Expo and Expo Go app, is there any complaints around it from iOS users. Thank you so much Kind regards
Posted
by frg-iga.
Last updated
.
Post not yet marked as solved
0 Replies
122 Views
We are developing an app using flutter, and we have also uploaded apple-app-site-association. The universal link is working fine with iPhone SE (15.5) and iPhone 8 (15.0). However, it's not working with iPhone 8 15.5, iPhone 11 15.5, and iPhone 13. Please take a look into this issue and let us know any help on this. Thank You.
Posted Last updated
.
Post not yet marked as solved
1 Replies
89 Views
My new 13 pro max was working just fine but suddenly it’s display turn all green to death! It was on ios version 15.5 1. I did restart the phone and all yet no help! Phone's touch and others are working just fine but unfortunately the screen is still all green, I found out many others are facing the same problem on ios 15.5 only in 13 pro max! I still have the international warranty left for 2023! The phone is USA variant. Please help me up I took a good care of my phone always yet I'm suffering from this problem! linkText
Posted Last updated
.
Post not yet marked as solved
3 Replies
1.5k Views
Hi All, We are using html input type date in our hybrid application which launches the native datepicker in the app. As we need the app to be accessible we chose the html type date. However at certain instances we want to restrict the date selection till present date only. We have used the max attribute to achieve this, for some reasons the datepicker is not respecting this attribute and allowing the user to select future dates. We are in a tricky position since we do not want to use any library and the production date is nearby. Below is the markup we have used for replicating the behavior: form label for="party"Choose your preferred party date: input type="date" name="party" min="2017-04-01" max="2017-04-30" /label /form Any help would be appreciated. Thanks in advance.
Posted Last updated
.
Post not yet marked as solved
0 Replies
100 Views
Hello community! As I read from https://support.apple.com/kb/SP743?locale=en_US iPhone7 has A10 Fusion chip, which has 4 cores, but [NSProcessInfo processInfo].processorCount returns 2. Also here it is stated that "Unlike most implementations of big.LITTLE, such as the Snapdragon 820 or Exynos 8890, only one core type can be active at a time, either the high-performance or low-power cores, but not both. Thus, the A10 Fusion appears to software and benchmarks as a dual core chip. " Another source tells us that: "Meanwhile it should be noted that while A10 technically has four CPU cores – the two Hurricane cores and the two smaller cores – this is not a heterogeneous design, and only two cores are active at once. So for the purposes of high performance benchmarking, this means we're benchmarking the big cores nearly exclusively." Can anybody confirm this or give the link to apple documentation to prove that? Thanks!
Posted Last updated
.
Post not yet marked as solved
12 Replies
8.3k Views
Why is My 1 month old iPhone is draining battery health too fast, just one and half month old and it has already lost 2% battery health although i charge about only 50-60% charge daily and never charged it 0-100 then also please help if someone can.
Posted Last updated
.
Post not yet marked as solved
4 Replies
310 Views
Hi, I was trying to capture ARP traffic from my iphone, I created a virtual interface using rvictl tool - rvi0. However, the packet captures on Wireshark tool for rvi0 interface do not show any ARP packets. Why is this happening? I used the tcpdump command - tcpdump -n -t -i rvi0 -q arp, while I was able to see some request packets, the response packets were not visible, why is this happening? Is there some other mechanism to capture ARP traffic from iphone? Can third-party apps capture arp traffic/arp table using any Apple API?
Posted Last updated
.
Post not yet marked as solved
0 Replies
101 Views
We use dynamic input size for some uses cases. When compute unit mode is .all there is strong difference in the execution time if the dynamic input shape doesn’t fit with the optimal shape. If we set the model optimal input shape as 896x896 but run it with an input shape of 1024x768 the execution time is almost twice as slower compared to an input size of 896x896. For example a model set with 896x896 preferred input shape can achieve inference at 66 ms when input shape is 896x896. However this model only achieve inference at 117 ms when input shape is 1024x768. In that case if we want to achieve best performances at inference time we need to switch from a model to another in function of the input shape which is not dynamic at all and memory greedy. There is a way to reduce the execution time when shape out of the preferred shape range?
Posted
by dbphr.
Last updated
.
Post not yet marked as solved
0 Replies
123 Views
We use several CoreML models on our swift application. Memory footprint of these coreML models varies in a range from 15 kB to 3.5 MB according to the XCode coreML utility tool. We observe a huge difference of loading time in function of the type of the compute units selected to run the model. Here is a small sample code used to load the model: let configuration = MLModelConfiguration() //Here I use the the .all compute units mode: configuration.computeUnits = .all let myModel = try! myCoremlModel(configuration: configuration).model Here are the profiling results of this sample code for different models sizes in function of the targeted compute units: Model-3.5-MB : computeUnits is .cpuAndGPU: 188 ms ⇒ 18 MB/s computeUnits is .all or .cpuAndNeuralEngine on iOS16: 4000 ms ⇒ 875 kB/s Model-2.6-MB: computeUnits is .cpuAndGPU: 144 ms ⇒ 18 MB/s computeUnits is .all or .cpuAndNeuralEngine on iOS16: 1300 ms ⇒ 2 MB/s Model-15-kB: computeUnits is .cpuAndGPU: 18 ms ⇒ 833 kB/s computeUnits is .all or .cpuAndNeuralEngine on iOS16: 700 ms ⇒ 22 kB/s What explained the difference of loading time in function en the computeUnits mode ? Is there a way to reduce the loading time of the models when using the .all or .cpuAndNeuralEngine computeUnits mode ?
Posted
by dbphr.
Last updated
.
Post not yet marked as solved
2 Replies
149 Views
so i woke up to find i had no notification since I last opened my phone which I thought was weird so I didn't overthink it but, when I unlocked my phone none of my apps were responsive, at first tik tok did work but after I immediately closed it out it wouldn't let me open the app again. i started to panic so I tried to power it off and it wouldn't let me do that. so I tried to go into my settings to see if that worked and it didn't ! i would like to note that I was experiencing this problem before I went to sleep. i went to open up a game but, it was just for one app and I thought it was because it needed to update or there was a new bug the only time it actually worked is when it sent my apple id a code for me to make a account on here, I'm currently writing this on a chrome book 😭 sorry if that's a lot to read but I'm distraught and scared lol I hope somebody can help me
Posted Last updated
.
Post not yet marked as solved
2 Replies
120 Views
So ive been trying to make storage on my phone since its been pretty full for a while. Im currently putting all my photos onto icloud. And i deleted a bunch of apps. But the “System” category is taking 7.44 GB of my storage and “Other” is taking up 9.47 GB and i think thats outrageous. I have an iphone 7 and i think ive had it for about 2 years. Rn the largest app taking up space is photos with about 5 GB and the rest have under 400 MB. ive gotten it down to about 25 GB but system and other is taking up most of that. Ive already cleared my safari history and cookies and cleared ALL my messages bc i dont have minutes and dont use messages i use insta, and these numbers are after i did that. What can i do? im gonna try backing it up and restarting it or whatever but its saying i dont have enough space on icloud for a backup even though its 4/5ths empty with 4 GB of empty space.
Posted Last updated
.
Post not yet marked as solved
0 Replies
108 Views
Hi all, please i need your help in issue that we faced in our app which we launched in the store so app is working fine in all devices except (iphone-6 and iphone-8) the content and icons is not filling well or doesn’t show well. in launch screen i made in deployment info as universal. Please any help with that i will appreciate thank you very much.
Posted
by YasDev.
Last updated
.
Post not yet marked as solved
1 Replies
141 Views
Sorry if this is a stupid question, but does Apple Silicon (on the Mac, iPhone, and iPad) support ARMv8-A, ARMv8-M or ARMv9? Also, has Apple added any custom functionality to the instruction set found in Apple Silicon?
Posted
by Cromulent.
Last updated
.
Post not yet marked as solved
0 Replies
93 Views
Hi, I have a very strange behavior on an iPhone SE (1st gen, 32 GB, iOS 15.5). It was overloaded (less than 1 GB free remaining). After trying many things unsuccessfully to free up memory, I decided to Erase All data and set it up as new device, so without restoring it from a previous backup. After that reset, it has now about 21GB of system data and only 2 or 3 GB free. I have erased it multiple times... Same thing... Nothing has been installed on the phone after the reset of course. The strangest thing (IMHO) is that if I connect the phone to my Mac, Finder says that I have 22 GB of free memory and doesn't see the 21 GB of system data. But if I try to upload some big files on the phone transfer stalls after 2 or 3 GB... Is there any chance to purge those system data ? Hope I can find help on this...
Posted
by JFS_Manta.
Last updated
.
Post not yet marked as solved
1 Replies
129 Views
iOS 16 enters the app in a horizontal screen state, and the navigation moves up; Zoom the list left and right;
Posted
by liujc.
Last updated
.
Post not yet marked as solved
0 Replies
891 Views
flutter build ios or flutter run --release error I just found the solution to change CommandLineTools but does not work and going to un-detect the device with another IDE **2022-06-24 13:07:15.915 xcodebuild[16367:96638] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-06-24 13:07:15.916 xcodebuild[16367:96638] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore ** BUILD FAILED ********
Posted Last updated
.