REALbasic is a good language to learn. As for whether it's better than Delphi, I have no idea.
If you want to write fast code, you can forget REALbasic. It's not that it's slow, because it's not. It's just not fast ;) You won't be writing low-level functions using pointers to manipulate bytes or Uint32's and stuff like that. REALbasic just isn't good at that stuff. For example in C++ you can do "bitops" like this: X = a << 1;
In REALbasic it is this X = bitwise.ShiftLeft( a, 1 ). The function has 3 parameters bitwise.ShiftLeft( value as uint64, shift as uint64, numbits as uint64=64 ) as Uint64. So if you are working with other types, there is overhead associated with type conversion. And overhead with calling a real function instead of the compiler just generating the correct instructions.
Working on low level code in RB is awkward to do, and slow. Pointers were kind of "Tacked on" to the language, over 10 years after REALbasic was created, instead of the most basic fundamental part of the language. And it shows. There isn't a "pointer of a certain type" in REALbasic like in C, just a generic pointer.
Many inbuilt REALbasic functions themselves are not well optimised. But no commonly used functions are terrible. For example I've written Unicode conversion code that can run 2-3x faster than REALbasic's conversion routines.
On the other hand, REALbasic has a large library of functions and classes to do most commonly needed tasks. And if the main time spent in your program, is calling functions that are part of REALbasic itself, then your program can be quite fast.
REALbasic also has an excellent language model. So you won't be restricted into only implementing bad design. The main thing that decides your program's speed is the design. If you need pointers or function callbacks, you can use them. Method overriding is there. You can build your own classes, and all that nice stuff. It's got weak-references, operator_overloading and many other language niceties. It's memory-management is easier-to-use and more reliable than any other language I've seen!
The worst thing about REALbasic?
Personally I've found the REALbasic community to be very unhelpful if you are trying to write fast software. If you ask a question on how to do something, and then come up with a better answer than the ones they gave and so don't use their answers, and tell them this... they will often start criticising you with personal attacks, instead of sticking to the technical details of whether one approach is better than the other. Even worse, they will ignore the technical discussion and ignore your speed tests proving your code is faster, and reply only with personal attacks in an attempt to bait you into an argument about personal stuff.
Stick up for yourself and they'll only make it worse for you.
It's a nice community if you are happy to accept advice that leads to not-super-optimised and fast code. Otherwise it can be hell. The community is not going to change either, because their mentality is enforced by REALbasic's community moderators.
Personally, I'm not going back there. I can't recommend REALbasic to anyone who wants to write fast software.