Custom Framework for iPhone projects

I have custom frameworks that I currently use in desktop applications. Some of these frameworks I would like to include in projects I plan to build for the iPhone. Is there a limitation when it comes to creating frameworks for the iPhone? If not what is the proper way to build frameworks for iPhone/Aspen?

I was able to get around this by setting the "DYLDFRAMEWORKPATH" variable in my project. Go to Project -> Edit Active Executable menu. A dialog should pop up, navigate to the "Arguments" tab, and add a new environment variable (bottom-half of the dialog). You'll want to set to the path to something like "${DYLDFRAMEWORKPATH}:/Users/foo/your/framework/path", where the path is the path to where your framework is on disk. This should allow the simulator to find the Framework code at runtime.
I have no idea how this will work when the code is loaded onto the phone. In addition, I'm having a lot of problems with 3rd party frameworks that reference code which isn't supported on the iPhone. Does anybody know if it is possible to compile a framework, where the target is the iPhone simulator?
Thanks,
-Andy Reitz.

Similar Messages

  • How to add mailcore framework to iphone project?, how to add mailcore framework to iphone project?

    I need to add the mailcore framework to my iphone project so that with mailcore to create an application for mail to attach files to mail and send it to recipients and download the content of the mail,so please if any one knows how to do this help me.
    thanks in advance...

    how to change the class name after the project is created.In NetBeans, right click the class name either in the declaration or constructor, select Refactor --> Rename... and follow the dialog.
    You can refactor --> rename anything that is not in a guarded block. For those, there are options via the properties window.
    db

  • Cannot use AddressBook Framework for iphone SDK

    I am trying to use the AddressBook Framework with iPhone SDK, and I added the following framework to my xcode project:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/System/Lib rary/Frameworks/AddressBook.framework
    When I compile, references to classes such as ABAddressBook and ABPerson cannot be resolved. ('ABPerson undeclared ...'). However, It seems the C interface to AddressBook is defined.
    I am using the framework in the iPhone SDK directory, and I have #import <AddressBook/AddressBook.h> in my header file, but it is not working for me. Any tips would be appreciated.

    It does explain the OP's problems
    Conserning add and checking if there are changed records in the addressbook I hear people complain about it and got refered to apple to report it as a bug for the sdk.
    And since we still are limited when it comes to mentioning the api I will rather link something someone else wrote on the topic before.
    Have a look here: http://forums.macrumors.com/showthread.php?p=5495200 that should give you some of the basics.

  • How Do I Use a SINGLE Custom CSS for My Project?

    How do I set a single CSS for a project?
    Currently, I have linked (I checked, they are actually linked) FM files. The project is Responsive HTML 5 Single Source Layout. It is set up this way:
    Project Files
    Each FM file has a folder that contains a CSS, an FPJ, any baggage (PNG, for example) and an HTM.
    So, for my project, I have 31 such folders.
    Above them is RHStyleMapping.css.
    That's it
    To map my project to a custom CSS, I did this:
    1) Created the custom CSS (let's call it TheSingleCSS-sb01.css) and put it in the same location as RHStyleMapping.css.
    2) Right-clicked Responsive HTML5 (Primary Layout) in the Single Source Layouts pane.
    3) Selected Properties. The Responsive HTML5 Properties dialog box opens.
    4) Click Content, select  the Apply to all Topics check box, select CSS, and choose my CSS, TheSingleCSS-sb01.css.
    5) Click Save and Generate. Generating happens.
    6) When prompted, click View Result.
    7) Double-click one of the resulting topics, and choose the HTML tab.
    8) Notice the following CSS files are referenced, NOT the one I want:
    <link rel="stylesheet" href="Configuration_ChangeWorkflow.css" type="text/css" />
    <link rel="stylesheet" href="..\..\RHStyleMapping.css" type="text/css" />
    <image>
    So:
    1) How can I replace 32 individual CSSes with one single custom CSS?
    2) Also note that Project Manager does not display my custom CSS, even though it is in the same location as RHStyleMapping.css and referenced in the Properties dialog box.
    Thanks all,
    Sean

    Hi, so as I mentioned before, I have used Apply to all and this doesn't work. The resulting HTML still uses a specific CSS for that one HTML file.
    1) I put the CSS I want to use, Sean01.css, in the top level of my project using Windows Explorer.
    2) I Save and Generate.
    3) But, my settings for styles in the CSS are not used. For example, FM_GlossaryDefinition is defined with a 0 left indent but actually uses a 144pt indent (that mirrors the print FM document and that I do not want).
    4) And, you can see from the actual HTML, that the Sean01.css file that I applied to all topics (see the first image) is not referenced. What am I doing wrong?
    What am I doing wrong? Again, these are imported FM files; this is not linked.
    Thanks,
    Sean

  • VBA - Setting Custom Fields For Sub-Projects Using a Master File

    Hello,
    I was wondering if anyone had any experience or could provide some help with a Macro to set the Custom Fields in Sub-Project Files directly from the Macro. I had this macro working in the past with Project 2007, but it has been a couple years and I am struggling
    to resolve an error. I am currently running Project 2010 with SP2. I intend to use this Macro in our Server 2010 environment, however at this time, I'm testing locally on my desktop.
    Scenario.
    I have a Master File with 2 sub-project (Project A, and Project B) inserted. While working in the Master File, I create a custom field title "TEAM Lookup". While in the Master File and without having to individually go and open, edit, save, and
    close each sub-project, push the custom field down to the project files.
    ERROR: Currently, the Macro will run and I can step through the lines of code until line 12 where I'm asking Project to use the organizer to shift the newly created custom field from the Master File to a sub-project. The line appears to
    populate correctly, but instead of continuing through the loop, an error is caught (ID - 1101 - "The File (Master File) was not found")
    Any ideas or suggestions would be greatly appreciated. Thanks
    Sample Code
    1. Sub CopyCustomFieldToSubprojects()
    2. Dim MASTER, custfield, contin, AllDone
    3. Dim SubProj As Subproject
    4. Alerts False
    5. MASTER = ActiveProject.Name
    6. Application.EnableCancelKey = pjInterrupt
    7. custfield = CustomFieldGetName(ActiveCell.FieldID) & ActiveCell.FieldName
    8. On Error GoTo errhand
    9. contin = MsgBox("This macro will copy the field " & "(" & custfield & ")" & " (the currently selected field) to all subprojects in this consolidated schedule." & vbCrLf & vbCrLf & "Be
    patient, it may take more than 70 seconds to run. You will be notified when it's done. Continue?", vbOKCancel)
    10.    If contin = vbCancel Then GoTo done
    11.    For Each SubProj In ActiveProject.Subprojects
    12.    OrganizerMoveItem Type:=pjFields, FileName:=MASTER, ToFileName:=SubProj.SourceProject.Name, Name:=custfield
    13.    Next SubProj
    14.     AllDone = MsgBox("The " & custfield & " field has been copied to all subprojects.", vbOKOnly)
    15. GoTo done
    16. errhand:
    17. ret = err.Description
    18. ret1 = err.Number
    19. done:
    20. End Sub

    SGBlaine,
    Project VBA can get rather fussy about some things so you just have to find out what it wants and then adjust your code accordingly. The following will work:
    Note the tweaks to the custfield variable and to the MASTER and source project names. Also when working with strings in VBA it is a good idea to eliminate at least one little gotcha, the need for exact capitalization. Therefore I always add the Option Compare
    Text statement. In your macro it won't make any difference since you do not directly create a string value, but it's good practice to have the option.
    Option Compare Text
    Sub CopyCustomFieldToSubprojects()
    Dim MASTER, custfield, contin, AllDone
    Dim SubProj As Subproject
    Alerts False
    MASTER = ActiveProject.FullName 'FullName includes the path, now it can find it
    Application.EnableCancelKey = pjInterrupt
    custfield = CustomFieldGetName(ActiveCell.FieldID) & " (" & ActiveCell.FieldName & ")"
    'strings are very fussy, it has to be exact
    On Error GoTo errhand
    contin = MsgBox("This macro will copy the field " & "(" & custfield & ")" & " (the currently selected field) to all subprojects in this consolidated schedule." & vbCrLf & vbCrLf & "Be
    patient, it may take more than 70 seconds to run. You will be notified when it's done. Continue?", vbOKCancel)
    If contin = vbCancel Then GoTo done
    For Each SubProj In ActiveProject.Subprojects
        OrganizerMoveItem Type:=pjFields, FileName:=MASTER, ToFileName:=SubProj.SourceProject.FullName, Name:=custfield
    Next SubProj
    AllDone = MsgBox("The " & custfield & " field has been copied to all subprojects.", vbOKOnly)
    GoTo done
    errhand:
    ret = Err.Description
    ret1 = Err.Number
    done:
    End Sub
    John

  • Changing the Customer no for unapproved project

    Dear Dina,
    A new project created with customer A and the project is in unapproved status...at this stage any possibilities to change the customer number to that project...for the same project number...
    or
    we need to end date the existing project and create new 1.
    please advice.
    thanks a lot n advance....

    Hi
    Using the form you could always add customers to the project with zero % of contribution.
    If you have a wrong customer assigned to a project, and you have not allocated funds from that customer agreement to the project, you are in a safe place. If you had allocated fund, enter a negative fund line for the wrong customer agreement, and baseline the funding, so it become zero.
    Now, even when the system does not allow you to update the customer percentage, you can do it directly on the database using TOOLS EXAMINE or SQL. Update the percentage of the wrong customer to zero, and the percentage of the correct customer to 100%. Since this is an intervention behind the forms, you should do it very carfully. Verify you are doing such update while no user is trying to baseline funding or revenue budget, and also that no one is running GDR or GDI on the same time.
    Dina

  • Can you make custom ringtone for iPhone 4 w/o using iTunes?

    My computer crashed and I had to redownload iTunes and all my music the other day. I plugged my iPhone 4 in to put a custom ringtone I made in iTunes on it and it says it wants to "erase and sync" my phone since it was connected to my old iTunes. Is there a way to fix this or is there a way to make a new custom ringtone for my iphone without using iTunes?

    about backup http://support.apple.com/kb/HT1766
    you're better off creating new ringtones.  Take a look at the first link I gave you, that will answer all your questions.

  • How to create custom BAPI for a project on Agentry?

    As I am very new to BAPI creation, I would like to get some helpful pdf documents or links for creating custom BAPIs, which would fetch data for an Agentry Project to be build.
    Tags edited by: Michael Appleby

    Rajkamal,
    I would recommend you work through the following tutorial on how to build an Agentry application from scratch.  It covers creating a BAPI to retrieve data from the SAP backend to Agentry.
    Part 1 - http://scn.sap.com/docs/DOC-47550
    Part 2 - http://scn.sap.com/docs/DOC-47651
    --Bill

  • How to change default ringtone to a custom one for IPhone 5.

    I have gone into settings  through Sounds made the change, but it does not register as the default even though the ringtone chosen has the checkmark beside it.  Ringtone still lists the factory default under sounds & vibrations.
    I am able to customize ringtones for individual contacts.

    user598986 wrote:
    Hi,
    How to change default value in a table
    I have a table TEST which has 2 fields CODE of Datatype VARCHAR2(10) and Indicator as VARCHAR2(1).
    I want to change the default value using ALTER TABLE TEST of field Indicator to 'I'.
    ALTER TABLE  test
    MODIFY (indicator DEFAULT 'I'); 
    Incidentally, INDICATOR is a keyword in Oracle, so you may have problems using it as a column name. If so, you'll have to enclose the column name in double-quotes, and be careful to use capital letters inside the quotes.
    Edited by: Frank Kulash on Aug 26, 2009 11:42 AM

  • Custom Icon for iPhone Home Screen

    Does anyone know if there's a way to upload an icon to the site so that people can add it to their iPhone home screens? Thanks!

    Hi!
    If you use Business Catalyst you can use the file upload to put the file apple-touch-icon.png to the root. iPhone will then recognize this file when you create a shortcut.
    You can also access your Muse files via FTP (I'm on a Mac and use Cyberduck), and upload the file to the root there.
    Tip: Create your icon in 300x300 pixels with 327 dpi. This will make the icon look really sharp and great on Retina displays.

  • Is an iPhone app the best choice for our project?

    Dear All,
    We are developing a travel tour idea for different locations within the US.  Tour content can include video, audio, images and text, as well as maps and locations.  We want to make our tours "in-depth" so that people can spend good quality time traveling a short distance and exploring "in-depth" rather than travelling long distances and giving only casual interest to what they see.
    I'm new to developing apps for the iPhone and am using Dreamweaver CS5.5 soon to be updated to CS6. 
    I'm wondering if an app for iPhone and other related media like Android is really the way to go because of the limited content and screen size available.  I can envision our tours being utilized in many other formats, including iPad, Interactive PDF, as travel e-books or through an interactive website.  Our goal is to sell our apps, not give our material away for free. PDF would be my preferred format, but I know that PDF is easily transferred for free among users and would probably not give us much profit.
    Any thoughts out there on what the best format for our project might be, or should it include ALL of the above formats? App creation for the iPhone is a rather complicated process, so that's why I'm wondering if after all of the work that you have to put in to create an iPhone app, if that is ultimately my best choice.
    I would appreciate any thoughts or advice, or any questions you might have.  I'm working on a Mac Pro with CS5.5 Master Collection soon to be updated to CS6
    Small Town Gal

    hi,
    It depends on your requirement. Base on my experience, VM or website all could meet your requirement. From your description, You could use azure website to host your php website (http://www.windowsazure.com/en-us/documentation/articles/web-sites-php-configure/).
    And you could use website auto scale feature in the future. I suggest you could see their comparison (http://www.windowsazure.com/en-us/documentation/articles/choose-web-site-cloud-service-vm/
    Hope it helps.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Embedding Custom / Private Framework in iPhone

    So I am using the Simulator, and I have my Framework all made up. Here are the steps:
    1: Build the Framework (Install Path set to @executable_path/../Frameworks)
    2: Add to iPhone App, XCode adds it in all the usual places
    3: Add a new Copy Files Build Phase (Placing MyFramework.framework into the phase. Set the Drop-Down to Frameworks)
    4: #import <MyFramework/MyFramework.h> (code completion knows it's there)
    5: Build the app (no error)
    6: Build and Run the App (dyld: Library not loaded:... blah blah blah)
    7: Set the path type of the framework to Relative to Project or Relative to Current SDK (Since i am using the simulator).
    8: Build and Run (dyld: Library not loaded:... blah blah blah)
    Does the iPhone allow embedded Frameworks? What am I doing wrong?

    If that error is still coming, that means iPhone doesn't support framework-type.
    See below the excerpts from iPhone SDK - NDA. They are deliberately disallowing the creation of user-frameworks on iPhone.
    3.3.2 An Application may not itself install or launch other executable code by any
    means, including without limitation through the use of a plug-in architecture, calling other
    frameworks, other APIs or otherwise. No interpreted code may be downloaded and used in
    an Application except for code that is interpreted and run by Apple's Published APIs and built-
    in interpreter(s).
    Anyway let's see if we can get this working on the real device.

  • Change customer for a project!!!!!!!!

    Dear Gurus,
    I have a project number for which was changed to a supply order.
    Just i created the project entering the details.No cost or anything assigned to this.
    Now i want to assign this project for another project contract i received now.
    I am able to change the project details like name, long name etc.
    But i am not able to change the "customers and contacts " and sales man details from Projects Templates.
    Can any one able to guide me, how can i edit the customer and contacts.

    Hi
    The easiest way is to abandon this project and start a new one :)
    If you insist on staying with the same project, you may add a different customer to the same project.
    For the wrong customer go and update the contribution percentage to zero (using Tools > Examine).
    Dina

  • Creating custom Category for Risk & Issue in Project Server 2013

    Dear All,
    How to Change Risk & Issue Category default as per business requirement when selecting them through drop down or radio button?
    I can do only Project wise from project site & then setting changes. But i want to customize it for all projects which are getting published in Project Server 2013. So doing manually every time project wise not making sense & consuming time also.
    Kindly help..

    I have created custom template but not getting as demonstrated in  blog
    post from Prasanna  specially
    end part where Risk, Issue n all content can be seen. In My case only simple 3-4 items can be seen apart from risk, issue etc.
    After that i saved this custom template to my
    one of EPT in Project Server 2013. But unable to customize my Risk & Issue Category options for all projects. However, i have gone through that post & unable to understand as described in 2010 & i am using 2013 version.
    Kindly let me know after saving custom Template
    to EPT how to move further to customize these risk & issue categories globally.!!

  • Custom web clip icons for iphone

    Friends-
    Can anyone help me? I'm trying to create custom icons for my favorite websites on my iphone 3GS. I know it could be done I just don't know how to do it.
    Thanks.

    You can't do it directly on your phone, they have to be created on the web site in PNG image file format and then saved to the web site's root directory. Unless the web site has created a custom icon, in most cases, the icon that appears on the home screen is a picture of the website it links to.

Maybe you are looking for

  • Free of Charge Item in Shopping Cart/PO

    Hello All - We are in SRM 5.0 (SRM Server 5.5).  We would like to be able to have free of charge items on the shopping cart/PO.  Does anyone know if this is standard functionality in SRM or do I need to do additional config?  I tried testing it out o

  • XI Soap Adapter: problems in parsing XML

    Hallo, I call a Web Service using XMLSpy and this is the response (note tag <File>):           <SOAPSDK4:ExpBaselineResponse xmlns:SOAPSDK4="http://tempuri.org/PRWBS_PRIMAVERA/message/">                <RESULT>OK</RESULT>                <File><?xml v

  • Closed Statement Exception

    hi, I'm using OC4J version "Oracle Application Server Containers for J2EE 10g (9.0.4.3.0) (build 060411.1838)" as my application server running on AIX 5.3 with java version "1.4.1" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1) Classi

  • Multiple usage of text-element ROLLUPTIME in web-template

    Hi All, We use a multi-provider for reporting. Underneath the multiprovider we have 3 Infocubes. For a webreport, based on the multi-provider, we would like to report the text-element ROLLUPTIME (Status of data) for the three infocubes seperately. Is

  • Merging two iPhoto libraries

    I've got a big library of photographs on my G5 and on my iBook. I'd like to merge these two. How can I do this without getting duplicates? Is there an easy way to do this over the wi-fi network?