This is a horizontal line character (⎯), and it appears longer for me in iOS 13.
It appears System was converting to SFUI Regular on iOS13 and SFUI Display on iOS12
Related
With iOS 13 Beta, when a photo is captured, photos are saved in the wrong orientation. They seem to be rotated 90 degrees counter-clockwise.
We use all the native API methods and everything worked properly before iOS 13. Before each capture capture, we run:
self.photoOutput.connection(with: AVMediaType.video)!.videoOrientation = self.stillImageOrientation
This happens if I run an iOS 12 targeted build or iOS 13 Beta targeted build.
UPDATE
This seems to be a HEIF format saving issue.
This seems to be fixed on Beta 5.
Update to beta 4 and the problem goes away
I developed an iOS app on Xcode 6.3 with iOS 8.3 .
Now I update Xcode to 7.1 with iOS 9.1 .
My app work perfectly on iPad with iOS 9.1
and all the views work perfectly in iPhone with iOS 9.1 expect one view .
With iphone 4s , 5 the problem is (lldb) with EXC_BAD_ACCESS(Code = 2 ,)
With iphone 5s , 6 , 6 plus , 6s , 6s plus no error message but the simulators hung all the time with max cpu and ram usage.
note : the implementation of view that causes the problem the same with iPad but in iPad work perfectly .
Please what the true analysis for the problem ?
There is a bug in Xcode 7.1 with UITextView , this is stupid bug.
You don't need to ensure that the UITextView holds at least 10 characters. Just adding a default of at least 10 characters to the UITextView in Interface Builder will fix the problem. Then, you can empty the UITextView using code.
this issue comes sometimes if u migrate from xcode 6 to xcode 7.. clean the code and check if the base sdk is proper.
sometimes this issue also comes in simulator. try running the app in real device.
Also, see if xcode 6 and 7 are not running simultaneously. run only one at a time.
Hope this helps u
Here I have developed the app in IOS6, when I open the App in IOS 7 with Xcode 5 In Collectionview errors are throwing
file://localhost/Users/asaraa/Documents/IOS/Projects/Asaraa/Embassy/UI-Changed/Washington/IOS7/20130918/Mphasis/RootviewController.xib:
error: Class Unavailable: UICollectionView on iOS versions prior to 6.0
How can i resolve this error, Could any body help me please
It looks to me from this description of your error:
UICollectionView on iOS versions prior to 6.0
That you're trying to build an app that has the deployment target (the oldest OS version) set to something older than iOS 6. UICollectionView only works on devices running iOS 6 & newer OS'es. Do you have your project settings set to run this app with iOS 5 or 4?
And if you change it to iOS 6, do you get better results?
UICollectionView didn't exist before iOS 6. You could try the open source PSTCollectionView , which supports iOS 5 and aims to be a drop-in replacement.
I am testing some HTML code on UIWebView. And am also wishing to support both iOS 5.x and iOS 6.x. But there seems to be a problem about font size associated with iOS 6.x only.
That is, under rotation, iOS 5.x would make fonts slightly smaller when changing to portrait from landscape mode (which is desirable, since portrait's width is shorter). However, UIWebView in iOS 6.x would do just the opposite.
The problem does not come up when the same HTML code is rendered in iOS Safari (both 5.x and 6.x), as font size always scales as expected during rotation.
It could be something I've missed about UIWebView, hope somebody knowledgable could help to explain this.
Also, the above problem comes up on my iPhone 5 iOS 6.1 test device. Please comment if you do or don't find any similar problem. Wish to know if it is only associated with this particular phone (or its settings) only.
Latest Update :
The above problem should be related to how the project (which started long before iOS 6 was available) is laid out. As have set up a new test project with a UIWebView and a UIView in some different basic setups, and the text autosizing during rotation seems to be ok in both ios 5 & 6. The above problem may be due to custom layout adjustment code used which is good only in iOS 5. Really wish there were more compatibility between the 2 ios versions.
Please use the viewpoint setting to see the difference in ios 5 and ios 6
Last week I uploaded an app to App Store. Some of the buttons have "Telugu Sangam MN Bold 17.0" Font. It's showing fine on iOS 6 running iPhone. But on iPhone's running with iOS 5 & iOS 5.1 the button texts are blank without any text.
What exactly I need to do to solve this? Even in the simulator's of iOS 5 & iOS 5.1 the buttons are blank without text, but in iOS 6 Simulator, everything looks good.
I just found the solution. I set the font title as "Attributed" which is not working with iOS 5 & iOS 5.1, now I changed it to "Plain", now it's working fine all versions. Thanks Guys for reply