Creating a login function and search function in iOS [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I've been having some difficulty designing a search and login function for my app. I have a list of video's with titles, and I need to create a search function (much like the youtube app) to search through the list. What would be the best way to go about doing this? Search the video's before they get fetched, and display the results, or search through the array after it's been fetched.
I also need to connect with an apache server to login in my app, and display unique content.
I haven't been able to find any samples on the matter.
Thanks for reading!

Your question is too vague. There are many paths that you can take. Your videos can be searchable on your remote apache server, or your iOS app can download the list of videos and search locally. This depends on the number of videos.
Best way is to have a table view with a list, and a search field on top. To get to this table view, the iOS app asks the user to login. If it's valid, then it shows the table/search views.

Related

Ext Js auto load of text fields with previous data [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm developing an application. How to make Panel so that the text fields should autofill/autoload when the user enters data second time
I think I understand what you mean, on editing their data it should prepopulate the fields.
To achieve this you need to use .setValue() on the controls to tell the control which data is should have selected/populated with.
Edit:
Based on comment feedback, if you want data to be auto selected on refresh you still need to save it somewhere. No other site can do this without it saved somewhere, whether locally on the users machine, or within a session of some sort or other options. This is not an issue with ExtJS. Once saved somewhere, wherever that may be, you could retrieve and set the values using the above, although I think it may be overcomplicating things, how often would a user accidently refresh the page and expect it to hold the data?

Post a "Check out my order" to Facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm developing a site that allows a user to create an order for a product based on "One of those, one of those, three of them, that much of that" etc to end up with a shopping list them can print out and take to their local store and show to a Customer Adviser "I'd like this product with these items in please".
I'd also like to have a Like button or something similar where you can post your results to your Facebook account - "Look what I'm buying!" sort of thing. Maybe even a link back to the client website.
I'm ultra new to the Facebook API - is anything like this possible? Have seen similar sort of ideas with people like Levi; is it possible to send complex text data to Facebook in this way rather than just "Like" a page, as the page results will be different for different users?
Yes, it is possible to do that.
Become an app developer. See: http://developers.facebook.com
Read thru the examples and other documentation at. http://developers.facebook.com/docs
Set up an app at: https://developers.facebook.com/apps
Get your feet wet by coding up some of the examples
Then get to work on your project's requirements and code up the solution.
Happy coding.

Searching For Users [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm currently investigating a way to develop a website that will allow me to search for users of facebook and the outcome is to display some simple information to the user of my website about this person. so firstly a search will will display a list of users and then when the user clicks the name the basic information will be displayed.
This is part of a University application i am looking into creating for a final year project. i'm not asking for answers i'm just wondering is it possible to even use the api to integrate with a aspx.net project and do the searches i have explained.
any pointers would help greatly. This is my first ever post on this form and i hope to be an active user of the site.
Thanks Everyone
Chris
Start here:
https://developers.facebook.com/docs/reference/api/
Look at the search section of this document.

Need suggestion to make an application to make an feed reader application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Hi i want to make an feed reading application that it should look like this
Here i want to make an application that reads data from different websites. The data should be seperate in category wise and should the number of updates should come in badges with respect to different category.
But i got a problem that there is no availability of creating badges inside a view like the picture in the above, there is only possibility to create on application icon, Please help me in which way i can achieve the target like in the picture. What should i use to create icons like NEWS, ADVISORS etc like in picture and how can we use badges in those icons inside a view.
Thank you if anyone help me in advance
First i would like to share something related to RSS Feeds. These are in XML Format. If you see the XML of feeds you will easily get the category of the feed.
For badges i would like to suggest create icons with empty badges (i.e, without numbers) and add labels fit into the red badge area. update labels from your code with number of updates.
Thanks
You could use the Three20 library for the view, specifically the launcher

Global facebook instance in iphone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like to have my app log users into facebook in a settings view and then save the information into userdefaults. When the app loads, it should log into facebook if the information is in userdefaults, and if not, continue operating normally without facebook functionality. Basically, I want one instance of facebook which is loaded at the beginning, and all the information used throughout every view in the app.
Is this possible?
Everything that I have seen so far shows one instance per view which is not what I want.
We do it all the time in our apps.
I typically create a Facebook singleton to manage the Facebook interaction and store the token in either NSUserDefaults or the Keychain, depending on the application.