I usually do some initial research online to get a grasp of the concepts involved and try to get an overview of what I need to learn to master the new skill (be it a new programming language or something else). During the research period I will gradually discover what I need to learn more about, and I will find out if the topic is easily covered by online resources or if I have to look elsewhere.
When am learning something like a new technology or a new programming language I like to get a complete overview of the subject, which is most often not possible—or at least a lot of work—with the various fragmented resources available online. Because of this I usually end up buying a book if I plan to learn something properly.
For larger and more complex topics I will often read more than one book, since different authors have different views on things and explain things in their own way. Online tutorials can get you started quickly, but most lack the depth you will get from reading a good text book on the subject.
That being said, I never read books like "Teach yourself XXX in 21 days", since most of them are too simple and shallow for my needs. For that you might as well read an online tutorial.
For programming languages, I also like to look at example code, but since I already know many languages the "Hello, world" tends go get boring rather quickly. Sometimes I will find more advanced examples, but most of the time I end up having to figure out things myself (using what I have read in books or other online resources) or look at more complex applications that use the language features or technology I want to learn.
When learning new APIs I try to read the offical API documentation (when available), but all too often I end up having to dissect sample source or even reverse engineer and debug the libraries because the documentation is so poor. In my experience, most examples cover what can easily be understood from the documentation while more advanced topics don't even have examples. (This varies strongly with different APIs, of course.)