In beta 2 using layer.cornerRadius on a UIEffectView with the UIGlassEffect allowed you to change the corner radius of the view. In beta 3, this no longer works. WWDC videos indicate the right way to do this is to set the cornerConfiguration on the UIEffectView, but that API doesn't seem to be available yet. At this time it doesn't seem like theres a way to have a glass view that isn't pill shaped.
Search results for
İOS 26 beta battery %1
253,812 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
You've installed a beta version of iOS 26 on your primary device. There are going to be issues with third-party apps, like your banking app, because they were written to work with iOS 18, not iOS 26. Most apps work fine, but some apps need updating to implement new features, or to address bugs that the newer version of iOS uncovers. You should never install a beta OS on your primary device, for exactly the reason you've discovered. Apple cannot fix your banking app unless it is a bug in iOS that's causing the issue. The developer of the app will have to update their app to work with iOS 26, but they cannot release it until iOS 26 is released around September. I suggest, if the banking app is important to you, that you downgrade to iOS 18.5, and I really hope you took a backup before you installed iOS 26 beta...
Topic:
App & System Services
SubTopic:
Apple Pay
In the Console, when presenting my view in a horizontally compact environment, I see: UINavigationController for collapsing UISplitViewController about to push view controller This message repeats infinitely, until the Xcode debugger eventually says: QUARANTINED DUE TO HIGH LOGGING VOLUME Of note is that this only occurs in the beta, does not occur when using the iOS 18.x SDK, and only occurs in a compact environment. EDIT: This occurs only when setting the secondary column of a doubleColumn UISplitViewController: splitVC.setViewController(secondary, for: .secondary) EDIT 2 and WORKAROUND: If this action is deferred until after viewDidAppear, it self-resolves: public override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) if let deferredSecondaryViewController { splitVC.showDetailViewController(deferredSecondaryViewController, sender: nil) } }
Topic:
UI Frameworks
SubTopic:
UIKit
Hi. We are writing to report a critical issue we've encountered following the recent release of iOS 26 beta 6. After updating our test devices, we discovered that our application is no longer able to establish HTTPS connections to several of our managed FQDNs. This issue was not present in beta 5 and appears to be a direct result of changes introduced in beta 6. The specific FQDNs that are currently unreachable are: d.socdm.com i.socdm.com tg.scodm.com We have reviewed the official iOS & iPadOS 26 Beta 6 Release Notes, particularly the updates related to TLS. While the notes mention changes, we have confirmed that our servers for all affected FQDNs support TLS 1.2, so we believe they should still be compliant. We have also investigated several of Apple's support documents regarding TLS connection requirements (e.g., HT214774, HT214041), but the information does not seem to apply to our situation, and we are currently unable to identif
Does the same issue occur when using Xcode 26 beta 4 and iOS 26 beta 4? Additionally, did you follow the instructions in Setting up the transaction observer for the payment queue?
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
WKWebView has set the option to disable selection (document. documentElement. style. webkitUserSelect='none ';) and long press (document. documentElement. style. webkitTouchCallout='none';). If there is text on one of the images in WebView, simply tap the image twice and then long press the text. The program will crash with the following error message: 0 CoreFoundation 0x185e058c8 __exceptionPreprocess + 164 1 libobjc.A.dylib 0x182d797c4 objc_exception_throw + 88 2 CoreFoundation 0x185e908d4 -[NSException initWithCoder:] + 0 3 QuartzCore 0x18678a874 CA::Layer::set_position(CA::Vec2<double> const&, bool) + 160 4 QuartzCore 0x1869a7270 -[CALayer setPosition:] + 52 5 UIKitCore 0x18c4ac564 -[UIView _backing_setPosition:] + 176 6 UIKitCore 0x18cefdf0c -[UIView setCenter:] + 220 7 UIKitCore 0x18cd9f794 -[_UIEditMenuContentPresentation _displayPreparedMenu:titleView:reason:didDismissMenu:configuration:] + 936 8 UIKitCore 0x18cd9f3c0 __54-[_UIEditMenuContentPresentation _displayMenu:reason
Thanks for taking the time to answer. It's still crashing with your recommendation (screenshot 2) and lldb still shows an uninitialized pointer (screenshot 1). Also, I should add that this starts crashing with iOS 26 betas. It has been working fine with every iOS version so far. .
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
Updated my Apple watch on Jun 23rd after beta released for developer. Watch was going smooth. No issue i found. Then public beta released & i installed this on my watch on 15th August. After that, i'm facing a huge problem with the battery of my watch. Its lasts only max 10 hours & then battery dies. Battery health still 92%. I've already shifted to developer beta 5 but the problem still is there. How to get over from this?
is there any way of installing or getting the update for IOS 9 beta 3 because i have the IOS 9 public beta 1
Hi. I cannot sign up for the Apple developer conference one on one meetings. Can somebody help me sign up for that and I also need iOS 14 beta and the new iPad OS Beta and the new macOS Beta ASAP Please send it to me and help me find it. So I can work on my apps for it. I also need help getting the Apple developer data for free as I am a student
Hi, I am running iOS Simulator on iOS 26 and I am trying to change unselectedItemTintColor of UITabBarItem in my TabBarViewController but it did not work when I tried following ways: Setting an iconColor through UITabBarAppearance() class Setting unselected item tint color like tabBar.unselectedItemTintColor = .black As an example attached file, I would like to set Settings tab's item color (icon + title) with different one when it is unselected.
Hey, could you please follow up if you can still reproduce this issue on iOS 26 (final release), iOS 26.0.1, or iOS 26.1 beta 1? [quote='854406022, CaliforniaJay, /thread/793747?answerId=854406022#854406022, /profile/CaliforniaJay'] I filed feedback: FB19738834 [/quote]
Topic:
App & System Services
SubTopic:
General
Tags:
Already filed a feedback in case this is a bug, but posting here in case I'm doing something wrong? I'd like the search field to automatically be displayed with the keyboard up when the view appears. This sample code works in iOS 18, but it does not work in iOS 26 beta 7 I also tried adding a delay to setting searchIsFocused = true but that did not help struct ContentView: View { var body: some View { NavigationStack { NavigationLink(destination: ListView()) { Label(Go to list, systemImage: list.bullet) } } .ignoresSafeArea() } } struct ListView: View { @State private var searchText: String = @State private var searchIsPresented: Bool = false @FocusState private var searchIsFocused: Bool var body: some View { ScrollView { Text(Test) } .searchable(text: $searchText, isPresented: $searchIsPresented, placement: .automatic, prompt: Search) .searchFocused($searchIsFocused) .onAppear { searchIsFocused = true } } }
Since the beta 2 update my 2013 MacBook Pro won't shut down or sleep properly.When I close the screen lid to sleep the computer it won't completely sleep.When I take it out from my bag it's still warm and the battery is depleteing.Another problem is it won't shut down completely too.When i click shutdown and then turn it on in the morning I will get the red indicator telling me to plug in the charger.This is a very serious issue.If I make the battery completely depleted everyday it may damage the battery life in the long term.Please help me with this issue.Thanks.
i updated my iphone 7+ to ios 14.2 and now i have battery drain problem and it takes long time to be charged and warmup during charging