Post

Replies

Boosts

Views

Activity

Xcode Beta 3 new build warning about Bridging Header pch.
Hey all when building my app on xcode 26 beta 3 im getting a new warning about a [APPNAME]-primary-bridging-header.pch no file or directory found, this warning is new to beta 3 for me, obviously if i turn precompile headers off in build settings the warning goes away so there is a work around, but figured ide let the xcode engineers know ! (maybe its just me, but i wouldnt think so) Again this is just a warning and not stopping the build but wanted to see if this is a new warning anyone else is getting. Thanks ! FB18710327 Ps - ive tried the usuals .. clean build, delete derived data get same warning :)
1
1
104
2w
NIBs with UISwitch error on build
Hey all wondering if anyone has seen this new in xcode 26 beta 2 it seems any NIBS with a UISwitch will 'error' saying please submit a feed back and attach the log, i did submite a feedback but looking at the log it simply says : the tool closed the connection (IBAgent-iOS) then if you just build again it builds fine and runs fine, but if you switch from simulator to device and build the error will happen again, but same thing build again and it works. I opened my NIBS with the switch and they open just fine, no errors or anything so im wondering if its something in the build system. For any xcode engineers here: here is my feedback number 18348463
1
0
81
Jun ’25
uialertviewcontroller presented reset's my tableview cells, font size / attributed text (iOS18)
when presenting an uialertviewcontroller either an actionsheet or alert it seems to have some weird interaction with my tableview cells. For example, i have custom font sizes a user can set so when im loading my cell i set the font size. It looks good on load but the second i preset a uialertviewcontroller it 'reset's all the cells to the default interface builder set fontsize. Some cells i use attributed text programmatically and that all gets reset as well to 'default' interface builder label settings. Its very odd. this is in iOS 18 b1. Funny enough it seems like every beta 1 (if i recall maybe in iOS 17 or iOS 16) it did the same thing there attributed text would like 'reset' its very odd. I have a hunch this is a bug and filed a feedback, but curious if there are any workarounds, or simply just wait until its fixed :D . Thanks all !
Topic: UI Frameworks SubTopic: UIKit Tags:
3
0
581
Jun ’24
17.4 b1 not calling or ignoring delegate - (UIInterfaceOrientationMask)supportedInterfaceOrientations
Is anyone having 'oddness' with ios 17.4 b1 either not calling delegate - (UIInterfaceOrientationMask)supportedInterfaceOrientations or simply ignoring it. For example apps that are locked in portrait (but do have to support rotation at different parts of the app) seem to be freely be able to rotate even on places it shoudnt. Im freely allowed to rotate the youtube app for example in landscape, at the main screen, not just on the video player. Im seeing this in other apps to that are locked portrait. But if you kill the app, and restart the app then it will not rotate. something funky was changed or a bug. ive never seen this before in ios 17.0 - 17.3
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
463
Jan ’24
iOS 15 B2 UINavigationBar Appearance color change delayed/Pop in when pushing a new viewcontroller
Hey All! When transitioning my app to use the nav bar appearance (introduce in ios13, but required to make navigation bar colors / backgrounds in io15) i believe i had everything all changed over and working ! in iOS 15 b2 it seems when changing navbar backgrounds from view controller to view controller BEFORE the view is displayed in (viewwillload) there seems to be a delay in the change, aka until the animation finishes THEN the navbar background will change, which if you have 2 difference navbarbackgrounds expected for a different view looks less than ideal, as it seems like it "pops in" vs it being there as the animation happens in ios 15 b1 and ios 14 etc. Any thoughts ? Thought maybe i was doing something wrong ! i submitted a feedback, but figured ide ask here too. Thanks !
Topic: UI Frameworks SubTopic: UIKit Tags:
10
0
17k
Nov ’22
xcode 14.1 beta NavBar assert errors in console
I know we can usually ignore these but was curious if any others are getting the same 'warnings' when simply pushing a new view controller from the navigationcontroller: UINavigationBar not configured causing _hasInlineSearchBar to return NO even if an inline search bar is present. Using the UISearchController's traitCollection instead. navigationBar = (null) 2022-09-14 15:45:31.203252-0400 TestingApp[32429:1274680] [Assert] UINavigationBar not configured causing _hasInlineSearchBar to return NO even if an inline search bar is present. Using the UISearchController's traitCollection instead. navigationBar = (null)  find it odd i dont use a search bar / controller at all. I submitted a feedback, but i dont think i can set _hasinlinesearchbar, i think that is private api. Ill just ignore them for now :)
2
4
1.5k
Sep ’22
Double TextField Delegate calls in iOS 13.4 b2
Hey All,i noticed something in my app using iOS 13.4 B2, this was not occuring on iOS 13.4 b1 or any previous iOS versions . The delegate methodtextFieldShouldBeginEditing is being called twice now when i return NO after giving focus to the textfield (i dont want the keyboard to appear over my action sheet). Normally this is only called once so showActionSheet is only called once, but now its called twice and calls showactionsheet twice, which is obviously not what we want. as 2 action sheets will show up one after the other. Anyone else seeing anything similiar with double delegate calls? Thanks !- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{ if(textField==myTextField2){ [myTextField1 resignFirstResponder]; [self showActionSheet]; return NO; } return YES; }
5
1
3.0k
Aug ’22