tags:

views:

24

answers:

3

what is the best way of getting acquainted with a frameworks api in a quick way?

is it by reading everything class and its members from top to bottom?

+1  A: 

Check out the documentation for overview pages, read them, try the framework's samples, if any. Start off with a sample and modify it, until you get to know the API better and better ... that's how I do it.

Of course it depends on the quality of the framwork's documentation. If there's nothing than a list of interfaces or functions and no usage samples and no one to ask, I'd better drop the framework quickly.

Alexander Gessler
+3  A: 

It is by attempting to code a real world project in it.

Developer Art
yes but for that i have to know the api documentation i guess. how can i get a instant feel of it
weng
You can't get an instant feel of it. It's just not possible without having some experience with it. I'm sorry, but it's the truth.
Developer Art
+1  A: 

If there is a tutorial start with it. Try out the sample examples write code that uses the framework. All this will take time but that is the quickest way to learn :)

sateesh