Why is my copy of Xcode 7.3 giving Seque 'Push' option but not 'Show? - push

Simple question and hopefully a simple answer :-)
Have trawled the net, including SO, but have not found an answer.
So far as I understand it the 'push' option has been replaced by 'show' and is deprecated - but not in my projects!! Is there

Okay. Found the answer.
In 'Interface Builder Document' click the 'Use Size Classes' tick box

Related

How to see the code in debagging state in Xcode?

I might not formulate the question correctly, so I'll use pictures to better explain it.
When I use breaking points in debugging I see only numbers:
Thought what I should see is the code itself, like on screenshot below:
What should I change in preferences in order to get the same view?
I tried to use different searching options but no-one raises that question. It's like all have this by default.
Go to settings in Xcode and find: Debug > debug workflow > Always show disassembly (uncheck it).
Note: The Disassembly window shows assembly code corresponding to the instructions created by the compiler.

Stepping back in DrRacket stepper

Trying to debug using the stepper in Dr. Racket but as soon as the error pops up the stepper's buttons get turned off. Any way to step back after an error to better see where the bug is?
Stepper's author here: as soegaard says, this sounds like a bug, but it will be hard to fix without a sequence of steps to help reproduce. FWIW, basic stepping in and around runtime & syntax bugs is a part of the standard release checks.

Adding items to subment 'New' in eclipse cnf

I am using eclipse CNF. When I place a right click in the project or folder for CNF, I see a pop up menu which contains an option "New" and that also contains submenu. How do i add an item to that submenu?
Well it seems i have figured out the way to do it :) :)
following link might help me as well as others searching for the same kind of solution...
http://cvalcarcel.wordpress.com/2010/04/04/writing-an-eclipse-plug-in-part-20-re turn-of-the-popup-menu-for-an-empty-navigator/

Xcode 4 is no longer showing me where my warnings are?

Xcode 4 has stopped showing me the locations of build warnings that I have. How can i get it to start showing me them again?
Make sure you're looking in the right place. On the left-hand side of Xcode (4), look for the little error symbol. Click it and enjoy your errors in all their glory.
If you click on the errors and it doesn't take you to the location in code, I think something must be messed up with your Xcode install. I remember you had another question earlier about Xcode problems, so it wouldn't hurt to uninstall & reinstall.
In Xcode 4.3.1. I have one project that doesn't show any warnings, but others do.
So it's not an Xcode issue I guess.
In the Issue Navigator (⌘4) be sure to clear the filter at the bottom left of the screen:
Just click on the x at the right, at the filter will be removed -- worked for me!
Check the below SO post
(iphone) Is there a way to see compile output of xcode4?
press command + 4 for issue navigator. (there are two filter here "By File" and "By Type")

Eclipse RCP - Internals of projection (folding) service

I need to make custom text folding as described here: Can I merge Syntax coloring and Folding? OR Projection colored from master document info
I'm digging through code, but its very perplexed... and I cant get access to some classes.
I still haven't found what class decides what to show when ProjectionAnnotation collapsed
I need some info on how folding/projection is implemented, but haven't found any articles.
Please if somebody familiar with Eclipse projection, or knows any articles, help!
The basic goals:
1) make ProjectionAnnotations to show text enclosed in xml tags, instead of first line
2) make ProjectionAnnotations unexpandable(permanently collapsed)
3) remove collapse/expand button (I think I know how to do it, but this decorative and have less priority)
Have a look at the excellent Eclipse corner article, you could also try looking at how Spring IDE implemented it (check out their source code from here).