Autolayout: Unable to simultaneously satisfy constraints. Symbolic breakpoint does not show the error message - objective-c

I ran to the issue and I cannot get my head around how to solve this. I have four views, each with elements inside has its constraints, you can see the full list in the picture below.
When I run the app, and click on the any one of the text fields, nothing happens and works just fine. However, when I click on the other text field I get this not very pleasant error message.
Well, I followed the steps, and added a symbolic breakpoint, but it did not give any useful information, as you can see below,
I have been stuck on this for a while, and tried many things, including changing the priorities of both views and textfields, as well as deleting some of the constraints that might have caused the problem. Unfortunately, nothing works :( Any help is very appreciated!

You're not doing anything wrong. The TUISystemInputAssistantView mentioned by the console message is not your view. Ignore the message (and file a bug report with Apple). It's not your problem.

Related

Section not showing in report builder

I'm having an issue where a certain rectangle isn't showing the data. However, it's throwing an exception so everything else works within the report. Initially, I thought there was a SQL error where some queries were broken but I managed to fix those. However, now it seems to be on the report builder side because it's working perfectly fine in SQL. This is my first time using Report Builder to fix issues. I've checked to see if the rectangle or any of the fields are hidden and none of them are. Maybe it's because the [ITEM_DESCRIPTION] doesn't have allow height to increase or decrease? Is there some certain go to places I should look? Any help would be much appreciated!
Thanks

How to stop IntelliJ from jumping to a subcategory in run console

I hope I can explain my specific annoyance clearly enough:
Quite some time ago, IntelliJ introduced a feature in the run console to parse the content of the output and would try to print a nice tree structure on the left. However, its default behavior of jumping to the error was very annoying. To illustrate my point:
When it starts normally, the full console output is available in the right panel. However, when things happen, or, in my case of gradle run, when I simply stop it, IntelliJ would jump to the specific block of output only with the error:
Note, in the second screenshot, that there is no scroll bar on the right side of the right panel, and thus I cannot scroll up to view the actual run logs. I have to click the left panel's top element in the tree to be able to view all logs.
The locking to a specific block of output is nice to have, but I am happy without it too, as before it was introduced. But the default jumping to that block is annoying and irritating. Almost in all cases I started and ended a run like this, I have to click the left panel to view the whole log -- this "Build cancelled" error block is of no use at all. And when it's jumping to an actual exception, majority of the time I'd need to look around its context for the cause, which requires me to re-orient myself in the log flow where the block was at. This is very counter productive for me.
I have been assuming IntelliJ should provide an option to either not jump to the error by default (leaving the full log available in the right panel), or to disable the whole console output parsing as a whole.
I have not been able to locate a setting for either of this. Does anyone know if that's possible?
We are working to fix that. Please vote and follow https://youtrack.jetbrains.com/issue/IDEA-241844

Notes 9 crashes while editing external email

We have a customized mail template where we can set values of a parameter in mail preference.
After getting upgraded to Notes 9, when the parameter is set to Automatic it's working fine, but when another value is selected below thing happens (It was working fine in previous versions of Notes..):
After opening any external email, after double clicking on the mail body to edit.. notes is getting crashed.
I have two questions :
I see for external emails the control is going from querymodechange to queryclose while editing. Does it always happen?
I debugged the whole thing. Surprisingly it works in debug mode..no notes crash!!
Any help would be much appreciated !!!
This is why customizing the mail template is rarely recommended. There are interactions and dependencies between the code in the template and the Notes client, and it's very hard to debug. Since you haven't shown any of your customized code, I don't think anybody is going to be able to help you. I would recommend removing your customization code one piece at a time until it no longer crashes. Then you'll have an idea of what's triggering it, and you can try a different approach.
When Notes crashes, it dumps some diagnostics in the data/IBM_TECHNICAL_SUPPORT directory, notably the file console.log
You could review it and post here the lines pertaining to the crash.
Also, what was the previous version of Notes ?
To target the offending code line, you can use that old, dirty and tedious trick : add the folling line at the top of the QueryClose event, and move it down until you no longer see the result. Then post the context.
print now & "so far so good"

Keep getting incorrect captcha

This used to work, but at some point in the last year it stopped working and we just found out today from a customer. It keeps on saying that you failed even if you type it right.
Also, if you press the voice button, it says a different number/word than the number/word it's displaying.
Here is a live link.
Figured it out. For anyone else that has this problem the solution was...
The page had multiple tables. In an update, the end of the form got outside of the main table, breaking the captcha. Once the was moved back inside the proper it worked again!

AutoresizesForKeyboard and Multiple TTTextEditors

When creating a form using three20 components with the methodology found in this example code, there are some strange behaviors with multiple TTTextEditors and UITextFields. Sometimes the fields disappear when touching the next one to enter text. After scouring for a solution, I found someone else with the same problem. Thought it would be useful to see it in his/her words.
My code hardly differs from the example given with three20 so I suspect it is a bug with the library. I too have tried self.autoresizesForKeyboard = NO; but find that it makes typing in a hidden (by the keyboard) field impossible.
I may have found the few lines of code to fix it!
http://github.com/noahmiller/three20/commit/577af26ed4cd636f152e2321fdc6ab08787452af
I found this link via this message
https://github.com/facebook/three20/issuesearch?state=open&q=autoresize#issue/139