Search results for

SwiftUI List performance

50,605 results found

Post

Replies

Boosts

Views

Activity

Reply to Continuity Problem on El Capitan
Check your phone to ensure settings for iMessage and the like were not reset. I performed an upgrade to my 6 and all of my devices were turned off by the update.Don't get frustrated if they are. When you reenable them it may take more than a few seconds to recieve the neededcode.Cheers!
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Battery Use Worse
Poor battery use and slow performance is normal for early betas which have not been optimized. Also, as someone recommended, it is usually a good idea to do a clean install and not fool around with device restoration unless you are specifically testing that aspect of the beta release to avoid issues that can be introduced by bugs in the restoration process.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to app crashes during the review
Post the crash log. (the header and crashed thread, at least - don't need the long list of binaries)If it is symbolicated, it should contain the source file and line number if any of your code is involved in the crash. If it's not symbolicated, drag it into the Device Logs view in Xcode's Devices window when you have a device connected. Xcode should then symbolicate it.
Jun ’15
Core Spotlight
Hello,I have a huge core data content and I want the list of a particular entity to be indexed by Core Spotlight. How would I do it? Do I need to do a query and loop through all the fetched items to index each of them? A code example would really help. Thanks!
2
0
431
Jun ’15
Strange bug - call list duplicated from other device
It's very strange, I have one device (iphone6) with iOS 8.4 (b3 and now b4), which shares the AppleID with another device (iPhone 5s - iOS 8.3). Both are using the same iCloud settings and iTunes library/login for iTunes match. Both back up to the iCloud backup but as different devices. Suddenly (soon after switching the iPhone 6 to 8.4b3, I *think*) the telephone call list of my iPhone 5s got duplicated on the iPhone 6 but not the other way round. After I had phoned my 5s the other day to find it my 6 showed missed call from [my iphone 6] in the night. This is puzzling. Anyone else encounter this?
0
0
253
Jun ’15
How do I generate an RSA public key using a modulus and exponent in iOS? (Obj-C)
Hi guys,I need to generate an RSA public key from a modulus and exponent and I'm unable to find any resources where someone has done this successfully. I can't even find a way to do it in Apples documentation. I have heard using SecKeyRef and/or OpenSSL is the way to go but searches on both of those lead to nothing that has worked (and what I tried is far too extensive to list here). Is this something not possible in iOS? If anyone has any ideas how to accomplish this I would greatly appreciate hearing them. Thank you.
7
0
6.2k
Jun ’15
Frequent network failures with OS X 10.11 Beta
I've noticed that my Mac will intermittently stop performing network request. I can see these error message in Console around the time when I notice network issues.6/11/15 10:31:20.379 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:32:29.139 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:33:39.135 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:33:47.990 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:33:47.990 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:34:54.126 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:35:57.161 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:35:57.161 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6)Anyone else with the Beta experiencing this? If I boot from OS X 10.10.3 on the
1
0
382
Jun ’15
How to write this generic dotProduct function in Swift?
Say I'd like to write a generic function dotProduct, something like:func dotProduct<T: FixedSizeArrayType where T.Element: BasicArithmeticType>(a: T, b: T) -> T.Element { var sum = T(0) for i in 0 ..< T.Count { sum = sum + a[i] * b[i] } return sum }This is just some haphazard pseudo code meant to illustrate the requirements for the function:It takes as arguments two fixed size arrays of equal length and element type and returns the dot product of the two arguments (the type of the return value is of course the same as the element type of the two arguments). It's also ok to make it as a method, with self replacing the first arg.I want compile time errors if I try to call it with arguments of different size/count/length or element type, and if I try to receive a return value of some other type than the element type of the two arguments.And as can be seen, The T.Element type should conform to an imaginary BasicArithmeticType protocol. This protocol is possible to write yourself, but currently the Swi
9
0
4.7k
Jun ’15
Reply to Battery overspending IOS9
I always setup as a new device whenever doing a restore to a new beta, in this case with my 6+ it made no difference, the battery performance was horrid. I have not changed any usage habbits, in fact I even used iOS9 less during the day and it killed the battery
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Publishing an app with MFi approval
What did the rejection notice say? Generally, buried among the standard boilerplate is the suggestion of what your application submision is missingAs someone who has no idea what you've actually done, I've got equal reasons to suspect thatYou forgot to do something or your submitted application build was missing a setting for some reason.The vendor did something silly like add you to a list and then forgot to click some button to submit the list change for aproval. (Disclaimer: I've never seen the vendor side of the MFi program interface.)The reviewer clicked the wrong button, and all of this is going to get cleared up when you go into the resolution center, and confirm all of the requirements.
Jun ’15
Unpaired, now frozen
Elected to unpair my watch from my phone running iOS 9 and, now, the watch is stuck at the booting screen with only one line filled inaround the radius. I've tried to reboot the watch several times with no change. Any ideas? Steps I took include the following-unpaired watch from phone--display showed unpairing occurring-display went black-continued to check to see if unpairing was occurring-Display remained black-performed two finger restart by holding down crown and side button--display shows apple logo followed by lines around radius.one line filled inhave contacted AppleCare and, due to beta software, they will not support the device at all.
0
0
264
Jun ’15
Reply to Bitcode and Assembly?
One small correction: The option name to include bitcode is -fembed-bitcode.As far as the question about whether Neon intrinsics are preferable to writing assembly code, I will say yes, at least in most cases. If you use intrinsics, the compiler can optimize the code to run well on different processors, and it is generally easier to maintain C code than assembly. But, if you need to hand-optimize the assembly to get the performance you want, you can certainly do that and it should just work for iOS even when you have bitcode for the other parts of your code.
Jun ’15