Code Monkey home page Code Monkey logo

Comments (28)

escoz avatar escoz commented on May 18, 2024

Hi thanks! This is caused by a change I made to the project yesterday, I'll fix it soon.

On Jan 25, 2012, at 7:39 AM, Muhammad [email protected] wrote:

Just download this project and when I try to run it, I am getting following error "Property 'tableView' not found on object of type 'LoginController *'" in LoginController.m, line number 29 and 30. Any idea why this problem is coming?


Reply to this email directly or view it on GitHub:
#51

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

Thanks.

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

I just hit another issue. Now instead of download the master tree, I downloaded 0.2 tag and thought about creating a new project. Everything works fine and I have followed all the instructions given for instillation. But i am getting following error.

/Users/itsaboutcode/Desktop/code/ExampleApplications/HelloQuickForm/HelloQuickForm/HelloQuickForm-Prefix.pch:4:9: fatal error: 'QuickDialog/QuickDialog.h' file not found [2]

here is the image to show that I have followed all the procedures to install it correctly - http://i.imgur.com/5cy04.png

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Done, thanks!

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Looks like you didn't set up the search path for headers properly.. go to http://escoz.com/open-source/quickdialog and search for "User Header Search Paths".. Double check that everything is fine there.. Try removing quotes if you added them..

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

I have done everything under the following heading "In YOUR project configuration, on the “Build Settings” tab" but still the same problem :(

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Which value do you have under "user header search paths" ?

On Wed, Jan 25, 2012 at 9:41 AM, Muhammad Adil <
[email protected]

wrote:

I have done everything under the following heading "In YOUR project
configuration, on the Build Settings tab" but still the same problem :(


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

User Header Search Paths & Always Search User Paths
http://i.imgur.com/Q7Ifx.png

Other Linker Flags
http://i.imgur.com/KVYsc.png

Error
QuickDialog/QuickDialog.h' file not found

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Try removing the quotes in the user header search..

On Wed, Jan 25, 2012 at 10:12 AM, Muhammad Adil <
[email protected]

wrote:

User Header Search Paths & Always Search User Paths
http://i.imgur.com/Q7Ifx.png

Other Linker Flags
http://i.imgur.com/KVYsc.png

Error
QuickDialog/QuickDialog.h' file not found


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

I have but same result, no success and getting the same error :(.

Not sure if this information can be helpful. I am using XCode 4.2 build 4C199 on OS X 10.6.8 and using the "Empty Template"

from quickdialog.

escoz avatar escoz commented on May 18, 2024

If it's a brand new project, feel free to upload it somewhere and I can
take a look.

On Wed, Jan 25, 2012 at 10:20 AM, Muhammad Adil <
[email protected]

wrote:

I have but same result, no success and getting the same error :(.

Not sure if this information can be helpful. I am using XCode 4.2 build
4C199 on OS X 10.6.8 and using the "Empty Template"


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

http://dl.dropbox.com/u/13019714/HelloQuickForm.zip

from quickdialog.

escoz avatar escoz commented on May 18, 2024

just to confirm, is this all you have on your project? it's missing the
code for quickdialog.

From the project configuration, it looks like quickdialog is in a different
directory from your project, is that true? For the instructions to work,
you need to have it inside your project structure (the git submodule
commands do that).

So you need:

/helloworld
/helloworld/project.xproj
/helloworld/quickdialog

On Wed, Jan 25, 2012 at 10:47 AM, Muhammad Adil <
[email protected]

wrote:

http://dl.dropbox.com/u/13019714/HelloQuickForm.zip


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

itsaboutcode avatar itsaboutcode commented on May 18, 2024

Thanks for your help. Problem solved. I am so stupid.

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Awesome!

On Wed, Jan 25, 2012 at 11:10 AM, Muhammad Adil <
[email protected]

wrote:

Thanks for your help. Problem solved. I am so stupid.


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

I'm having the same issue above, trying to connect a brand new project with QuickDialogs, I try everything here, but It doesn't work, what can I do?

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Hey Simon,

Which problem exactly are you having? Muhammad's problem was that
QuickDialog was not located inside his project.

On Thu, Jan 26, 2012 at 10:14 PM, Simon Cascante <
[email protected]

wrote:

I'm having the same issue above, trying to connect a brand new project
with QuickDialogs, I try everything here, but It doesn't work, what can I
do?


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

I'm starting to feel really stupid!

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

I have the QuickDialog folder inside my Project folder:

Project/Project.xproj
Project/QuickDialog

I follow every step in your page, but when I try to compile the error says: 'QuickDialog/QuickDialog.h' file not found

What could be?

from quickdialog.

escoz avatar escoz commented on May 18, 2024

its' very likely related to User Header Search Paths. Try to change it so
it includes the path with the files.

On Thu, Jan 26, 2012 at 10:34 PM, Simon Cascante <
[email protected]

wrote:

I have the QuickDialog folder inside my Project folder:

Project/Project.xproj
Project/QuickDialog

I follow every step in your page, but when I try to compile the error
says: 'QuickDialog/QuickDialog.h' file not found

What could be?


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

The project is here https://dl-web.dropbox.com/get/QD/QuickDiagTest.zip?w=305cd010

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

I do that already! But still not working :(

With the quotes and without the quotes, the same issue.

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

The error says "Lexical or Preprocessor Issue 'QuickDialog/QuickDialog.h' file not found

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

I change the settings for the Project and for the Target and everything works, but I have to add the MapKit and the CoreLocation Framework

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

Is that ok?

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Great to hear it worked. Yes, adding the frameworks is fine.

On Jan 26, 2012, at 11:02 PM, Simon [email protected] wrote:

Is that ok?


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

scascacha avatar scascacha commented on May 18, 2024

Thank you so much for your help, one last thing, QuickDialogs works with iOS 4.3 or lower?

from quickdialog.

escoz avatar escoz commented on May 18, 2024

Not as is, no. It requires iOS5 for now.

There's not a lot of things that would have to be changed to support even
4.0 I think, but I haven't had the time to do it.

On Fri, Jan 27, 2012 at 8:31 AM, Simon Cascante <
[email protected]

wrote:

Thank you so much for your help, one last thing, QuickDialogs works with
iOS 4.3 or lower?


Reply to this email directly or view it on GitHub:
#51 (comment)

from quickdialog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.