Hendrik Bugdoll
Hendrik Bugdoll
Adding an additional check of `searchString` in `numberOfRowsInSection:`, `cellForRowAtIndexPath:` and `heightForRowAtIndexPath:` works for me, see https://github.com/tidev/titanium-sdk/commit/f992e596e3f9aaceca66c662f573b82e541409db: `if ([self isSearchStarted] || self.searchString.length > 0) { ... }` ---- Note: After setting...
> TableView is acting strange in iOS26 iOS 17+18 are affected too. Under iOS 15+16 it works fine. **Edit:** I see you already came across it 3 years ago →...
> [!WARNING] > In case of security issues, please note https://github.com/tidev/titanium-sdk?tab=readme-ov-file#security
> after inspecting the iOS titanium source code, it seems to not be considered at all It is only set when the camera (=`picker`) is open, see: https://github.com/tidev/titanium-sdk/blob/8c034a6160a408399363c0ea951de9c4874d3751/iphone/Classes/MediaModule.m#L535-L552 (same in...
@m1ga Thanks for testing and reporting 👍 I can now reproduce the issue and I'am working on it.
@m1ga The new issue could be reproduced by modifying your example from https://github.com/tidev/titanium-sdk/issues/14145#issuecomment-3422338133 as follows ``` var win1 = Ti.UI.createWindow({ backgroundColor: 'blue', title: 'Blue' }); win1.add(Ti.UI.createLabel({text: 'I am a blue...
> It's not crashing anymore but please check the "Red" (2nd tab) title in your example: it's at the wrong position at first and then jumps into place when the...
> Thank you for the update 👍 Now it looks fine here too. Thanks for checking again.
The updated fix requires neither a TabBar relayout nor a placeholder image. The TabBarItem has always been set on the wrong ViewController (`rootController` instead of NavigationController `controller`). That causes the...
I have currently seen this crash during the following test in the mocha test app – presumably when some error views are open: https://github.com/tidev/titanium-sdk/blob/8c034a6160a408399363c0ea951de9c4874d3751/tests/Resources/ti.ui.navigationwindow.test.js#L275-L287 Crash Log: ``` [INFO] *** Terminating...