Where is the full list of XCTest functions documented? - xcode

I'm getting started with XCTest and only see bits and pieces of what is possible.
I know these functions:
XCTAssertEqualObjects
XCTAssertTrue
There is documentation in at "Unit Test Your App" https://developer.apple.com/library/ios/documentation/ToolsLanguages/Conceptual/Xcode_Overview/UnitTestYourApp/UnitTestYourApp.html
Also, I see the header file XCTestAssertions.h and some webpage here is http://iosunittesting.com/xctest-assertions/ and another at http://appleprogramming.com/blog/2013/12/26/xctest-assertions-documentation/
But is there primary and reliable current documentation for these functions?

Xcode 8 Update: XCTest now has official documentation.
I was able to extract an appledoc from the XCTest headers files and posted the documentation online. This has been last updated for Xcode 7.2.

Updated documentation link is here:
https://developer.apple.com/documentation/xctest

Related

How to make ipa file from react native cli for testing?

Do I need a paid developer account from apple?
2)IF no, then how to do it?
I have Xcode installed.
This is very unclear to me
https://reactnative.dev/docs/publishing-to-app-store
You can test through Apple's test flight.
Please refer to the official document for the contents.
If you want to automate repetitive distributions, you can use the following library.
circleci document

Where are the sample projects in Xcode 4?

In older versions of Xcode they have been in the developer folder, just wondering where they are available now, do I have to download them from somewhere?
If you find the name of the project you want from the Documentation tab in Organiser you can simple choose "Open Project" and it will be downloaded to a folder of your choice.
Make sure you have downloaded the documentation first via xCode/Preferences/Downloads/Documentation/Check & Install Now.
There a lot of sample codes. Just a simple search in google.
Here:
raywenderlich iPhone Tutorials with source code
Github - search for repos
Apple's own sample codes
The Open Source iPhone Apps List in maniac dev
Cocos2d samples
https://stackoverflow.com/questions/1353130/where-can-i-find-sample-iphone-code
I bet this is a good start.
Hope this helps. Have fun.

Using Apple's coding examples in XCode 4.3.2 - Base SDK Missing

I'm discovering XCode and iOS development.
Delving into the iOS documentation, I've tried to download and run some of the programming examples.
As an example, I'll use AccelerometerGraph.
If I download the code and try to compile, i get an error message, and I realize that the Navigation panel tells me : Base SDK Missing.
After fiddling around (the existing answers on stackoverflow refer to the Xcode 3.2 answer, which doesn't work) I figured I should go to "Editor > Validate Settingsā€¦" and accept the changes.
It "seems" to work, (as in the "Missing SDK" message disappears, and I can compile) but I'm wondering if i'm missing something more fundamental.
Also, I thought if there is such a fundamental change, it would be useful to have it up there in one of the questions.
Thx
P.
Go to the project settings and choose "Latest SDK" for the SDK option and that should fix your projects.
And if you want to be super helpful, file a bug with Apple (at http://bugreporter.apple.com) and tell them to update these outdated sample projects to use the latest SDK's if possible.
Not missing something more fundamental. Apple's sample projects have a variety of vintages. Mostly they compile and link under the current versions of Xcode and friends. Some need to be brought up to date. What you found was one that was originally set up for an obsolete version of the SDK and it compiles and links fine with one that was automagically found on your system when you updated it.

How do I use AFAssistantPane?

I have searched my entire Mac for ibplugin to find the QTKit IBPlugin, but I also came accros a plugin which adds AFAssistantPane to IB. I did a Google-search but Google has no results for it. So, does anyone know how I can use this AFAssistantPane?
alt text http://img59.imageshack.us/img59/7963/schermafbeelding2010052.png
Thanks
Update: I noted that this is in a private framework (that's why it is not documented).
Update: The framework doesn't include header files. Must I hack it and recreate the header files?
There is a command line utility for exploration of private frameworks called class-dump. You can google for it. Here's the first result that came up for me: Dumping the iPhone 2.2 Frameworks.

Appkit examples on OSX 10.6

I'm trying to re-invent Preview.app. I've been told that some examples in /Developers/Examples/AppKit will help me. However, on my 10.6 system, I don't have such a folder.
Did the examples get moved? Is my installation somehow incomplete? will the examples I copy from a 10.5 system work?
thanks
Quoting ReadMe.rtf on /Developer/Examples:
The Xcode projects that were formerly installed locally in the /Developer/Examples/ folder are now in the ADC Reference Library. The ADC Reference Library now provides access to all documentation and sample code.
Using Xcode, find sample code in the Documentation window. Search for samples by title, search for symbols that you're interested in, or use the reference library navigation to find samples by topic or framework. Documents in the reference library are organized by resource type, which allows you to choose the type of document most relevant to your needs, including sample code. You can view all sample code, navigate to a particular topic and see relevant sample code for that topic, or navigate to a framework that you're interested in and see sample code that specifically focuses on that framework.
Find sample code using your web browser by going to the Mac Dev Center, linked from http://developer.apple.com.
From there, go to the reference library.
Hope that helped!

Resources