Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 266787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T23:28:23+00:00 2026-05-11T23:28:23+00:00

Xcode allows you to create automated scripts for performing repetitive tasks. What scripts have

  • 0

Xcode allows you to create automated scripts for performing repetitive tasks. What scripts have you written to speed up development?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T23:28:23+00:00Added an answer on May 11, 2026 at 11:28 pm

    I’ve created three for my JSON.Framework for Cocoa and the iPhone. These take care of the following:

    • Creates a release Disk Image with dynamic embedded Framework, custom iPhone SDK, API documentation and some documentation files in.
    • Run Doxygen over the source to create an Xcode-compatible documentation set and install this. This means when you search for things in Xcode’s documentation search your documentation can be found too.
    • Run Doxygen over the source to update a checked-in version of the API documentation in the source tree itself. This is pretty neat if you use Subversion (which it assumes) as the documentation is always up-to-date for the branch you’re in. Great if you’re hosting on Google Code, for example.

    Beware some hard-coded project-specific values in the below. I didn’t want to potentially break the scripts by editing those out. These are launched from a Custom Script Phase in Xcode. You can see how they’re integrated in the Xcode project for the project linked above.

    CreateDiskImage.sh:

    #!/bin/sh
    
    set -x
    
    # Determine the project name and version
    VERS=$(agvtool mvers -terse1)
    
    # Derived names
    VOLNAME=${PROJECT}_${VERS}
    DISK_IMAGE=$BUILD_DIR/$VOLNAME
    DISK_IMAGE_FILE=$INSTALL_DIR/$VOLNAME.dmg
    
    # Remove old targets
    rm -f $DISK_IMAGE_FILE
    test -d $DISK_IMAGE && chmod -R +w $DISK_IMAGE && rm -rf $DISK_IMAGE
    mkdir -p $DISK_IMAGE
    
    # Create the Embedded framework and copy it to the disk image.
    xcodebuild -target JSON -configuration Release install || exit 1
    cp -p -R $INSTALL_DIR/../Frameworks/$PROJECT.framework $DISK_IMAGE
    
    IPHONE_SDK=2.2.1
    
    # Create the iPhone SDK directly in the disk image folder.
    xcodebuild -target libjson -configuration Release -sdk iphoneos$IPHONE_SDK install \
        ARCHS=armv6 \
        DSTROOT=$DISK_IMAGE/SDKs/JSON/iphoneos.sdk || exit 1
    sed -e "s/%PROJECT%/$PROJECT/g" \
        -e "s/%VERS%/$VERS/g" \
        -e "s/%IPHONE_SDK%/$IPHONE_SDK/g" \
        $SOURCE_ROOT/Resources/iphoneos.sdk/SDKSettings.plist > $DISK_IMAGE/SDKs/JSON/iphoneos.sdk/SDKSettings.plist || exit 1
    
    xcodebuild -target libjson -configuration Release -sdk iphonesimulator$IPHONE_SDK install \
        ARCHS=i386 \
        DSTROOT=$DISK_IMAGE/SDKs/JSON/iphonesimulator.sdk || exit 1
    sed -e "s/%PROJECT%/$PROJECT/g" \
        -e "s/%VERS%/$VERS/g" \
        -e "s/%IPHONE_SDK%/$IPHONE_SDK/g" \
        $SOURCE_ROOT/Resources/iphonesimulator.sdk/SDKSettings.plist > $DISK_IMAGE/SDKs/JSON/iphonesimulator.sdk/SDKSettings.plist || exit 1    
    
    # Allow linking statically into normal OS X apps
    xcodebuild -target libjson -configuration Release -sdk macosx10.5 install \
        DSTROOT=$DISK_IMAGE/SDKs/JSON/macosx.sdk || exit 1
    
    # Copy the source verbatim into the disk image.
    cp -p -R $SOURCE_ROOT/Source $DISK_IMAGE/$PROJECT
    rm -rf $DISK_IMAGE/$PROJECT/.svn
    
    # Create the documentation
    xcodebuild -target Documentation -configuration Release install || exit 1
    cp -p -R $INSTALL_DIR/Documentation/html $DISK_IMAGE/Documentation
    rm -rf $DISK_IMAGE/Documentation/.svn
    
    cat <<HTML > $DISK_IMAGE/Documentation.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <script type="text/javascript">
    <!--
    window.location = "Documentation/index.html"
    //-->
    </script>
    </head>
    <body>
    <p>Aw, shucks! I tried to redirect you to the <a href="Documentaton/index.html">api documentation</a> but obviously failed. Please find it yourself. </p>
    </body>
    </html>
    HTML
    
    cp -p $SOURCE_ROOT/README $DISK_IMAGE
    cp -p $SOURCE_ROOT/Credits.rtf $DISK_IMAGE
    cp -p $SOURCE_ROOT/Install.rtf $DISK_IMAGE
    cp -p $SOURCE_ROOT/Changes.rtf $DISK_IMAGE
    
    hdiutil create -fs HFS+ -volname $VOLNAME -srcfolder $DISK_IMAGE $DISK_IMAGE_FILE
    

    InstallDocumentation.sh:

    #!/bin/sh
    # See also http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 
    
    set -x
    
    VERSION=$(agvtool mvers -terse1)
    
    DOXYFILE=$DERIVED_FILES_DIR/doxygen.config
    DOXYGEN=/Applications/Doxygen.app/Contents/Resources/doxygen
    DOCSET=$INSTALL_DIR/Docset
    
    rm -rf $DOCSET
    mkdir -p $DOCSET || exit 1
    mkdir -p $DERIVED_FILES_DIR || exit 1
    
    if ! test -x $DOXYGEN ; then
        echo "*** Install Doxygen to get documentation generated for you automatically ***"
        exit 1
    fi
    
    # Create a doxygen configuration file with only the settings we care about
    $DOXYGEN -g - > $DOXYFILE
    
    cat <<EOF >> $DOXYFILE
    
    PROJECT_NAME           = $FULL_PRODUCT_NAME
    PROJECT_NUMBER         = $VERSION
    OUTPUT_DIRECTORY       = $DOCSET
    INPUT                  = $SOURCE_ROOT/Source
    FILE_PATTERNS          = *.h *.m
    
    HIDE_UNDOC_MEMBERS     = YES
    HIDE_UNDOC_CLASSES     = YES
    HIDE_UNDOC_RELATIONS   = YES
    REPEAT_BRIEF           = NO
    CASE_SENSE_NAMES       = YES
    INLINE_INHERITED_MEMB  = YES
    SHOW_FILES             = NO
    SHOW_INCLUDE_FILES     = NO
    GENERATE_LATEX         = NO
    GENERATE_HTML          = YES
    GENERATE_DOCSET        = YES
    DOCSET_FEEDNAME        = "$PROJECT.framework API Documentation"
    DOCSET_BUNDLE_ID       = org.brautaset.$PROJECT
    
    EOF
    
    #  Run doxygen on the updated config file.
    #  doxygen creates a Makefile that does most of the heavy lifting.
    $DOXYGEN $DOXYFILE
    
    #  make will invoke docsetutil. Take a look at the Makefile to see how this is done.
    make -C $DOCSET/html install
    
    #  Construct a temporary applescript file to tell Xcode to load a docset.
    rm -f $TEMP_DIR/loadDocSet.scpt
    
    cat <<EOF > $TEMP_DIR/loadDocSet.scpt
    tell application "Xcode"
        load documentation set with path "/Users/$USER/Library/Developer/Shared/Documentation/DocSets/org.brautaset.${PROJECT}.docset/"
    end tell
    EOF
    
    # Run the load-docset applescript command.
    osascript $TEMP_DIR/loadDocSet.scpt
    

    RegenerateDocumentation.sh:

    #!/bin/sh
    # See also http://developer.apple.com/tools/creatingdocsetswithdoxygen.html 
    
    set -x
    
    VERSION=$(agvtool mvers -terse1)
    
    DOXYFILE=$DERIVED_FILES_DIR/doxygen.config
    DOXYGEN=/Applications/Doxygen.app/Contents/Resources/doxygen
    DOCSET=$INSTALL_DIR/Documentation
    APIDOCDIR=$SOURCE_ROOT/documentation
    
    rm -rf $DOCSET
    mkdir -p $DOCSET || exit 1
    mkdir -p $DERIVED_FILES_DIR || exit 1
    
    if ! test -x $DOXYGEN ; then
        echo "*** Install Doxygen to get documentation generated for you automatically ***"
        exit 1
    fi
    
    # Create a doxygen configuration file with only the settings we care about
    $DOXYGEN -g - > $DOXYFILE
    
    cat <<EOF >> $DOXYFILE
    
    PROJECT_NAME           = $FULL_PRODUCT_NAME
    PROJECT_NUMBER         = $VERSION
    OUTPUT_DIRECTORY       = $DOCSET
    INPUT                  = $SOURCE_ROOT/Source
    FILE_PATTERNS          = *.h *.m
    
    HIDE_UNDOC_MEMBERS     = YES
    HIDE_UNDOC_CLASSES     = YES
    HIDE_UNDOC_RELATIONS   = YES
    REPEAT_BRIEF           = NO
    CASE_SENSE_NAMES       = YES
    INLINE_INHERITED_MEMB  = YES
    SHOW_FILES             = NO
    SHOW_INCLUDE_FILES     = NO
    GENERATE_LATEX         = NO
    GENERATE_HTML          = YES
    GENERATE_DOCSET        = NO
    
    EOF
    
    #  Run doxygen on the updated config file.
    $DOXYGEN $DOXYFILE
    
    # Replace the old dir with the newly generated one.
    rm -f $APIDOCDIR/*
    cp -p $DOCSET/html/* $APIDOCDIR
    cd $APIDOCDIR
    
    # Revert files that differ only in the timestamp.
    svn diff *.html | diffstat | awk '$3 == 2 { print $1 }' | xargs svn revert
    
    # Add/remove files from subversion.
    svn st | awk '
        $1 == "?" { print "svn add", $2 }
        $1 == "!" { print "svn delete",  $2 }
    ' | sh -
    
    svn propset svn:mime-type text/html *.html
    svn propset svn:mime-type text/css *.css
    svn propset svn:mime-type image/png *.png
    svn propset svn:mime-type image/gif *.gif
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Xcode, GDB allows you to change local variables while debugging (see how to
In my application, I have a large text field that allows the user to
I have an Xcode project with a large number of targets where I would
I have window with 3 table views (10.7.2, Xcode 4.2). They are all created
I have never made an app using XCode and Cocoa but I think following
I am new to xcode and I'm trying to create a web browser with
I have recently got a Mac and I have downloaded Xcode 4.2 from the
I've used Xcode 4.2 to create a storyboard-based iOS application. One of my screens
Possible Duplicate: How to create documentation for instance variable and methods in Xcode? Eclipse-based
Xcode has a feature which allows you to quickly switch between a {.m,.c,.cpp} file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.