I am trying to port an iOS application to BlackBerry-10. Is there anything in BlackBerry-10 that is equivalent to UINavigationController of IOS.
Asked
Active
Viewed 141 times
-1

Michael Donohue
- 11,776
- 5
- 31
- 44

Tahlil
- 2,680
- 6
- 43
- 84
-
4Not in C++ itself, but probably in the Blackberry UI library. What have you looked at? – Some programmer dude Dec 10 '12 at 10:46
-
Can you please tell me what library is that? – Tahlil Dec 10 '12 at 11:04
-
There must be documentation you can search. – Some programmer dude Dec 10 '12 at 11:15
-
I am new at BB10. So dont know much about anything. can you please provide me a link? – Tahlil Dec 10 '12 at 11:34
-
Not to sound rude or anything but it looks to me like you should read some introductory programming books. Your last question can be answered with a google query: "Blackberry UI library". – Andy Ibanez Dec 10 '12 at 18:25
-
Before trying to hardly replicate a pattern, maybe you should start by learning the new platform – Benoit Dec 10 '12 at 18:34
-
@Leonnears I wanted the link of the page where the equivalent of navigation controller of IOS in BB10 was. I know it could be in the BlackBerry UI Library. But wanted to know which component is the equivalent. Thanks. – Tahlil Dec 11 '12 at 08:33
1 Answers
3
Yes, the equivalent is NavigationPane
. There's also a guide on porting your iOS app to BlackBerry 10

donturner
- 17,867
- 8
- 59
- 81
-
-
Can you please tell me where do I find the equivalency list of objective C objects to C++? I have already seen https://developer.blackberry.com/cascades/documentation/getting_started/porting/objc_cascades.html But it doesn't seem to contain navigation controller's equivalent or UIView's equivalent and many others. – Tahlil Dec 12 '12 at 12:20
-
1There isn't an official list as yet, you'll need to take a look at the Cascades SDK and see which objects fit best with your existing iOS architecture. – donturner Dec 17 '12 at 11:24