How to make an alert view without buttons on iphone?

Hi,
I'm trying to create an alert view without buttons. On my iphone application I have to run a process, while the process is running I want to display an alert view with info about the process, and then when the process is done I want to dismiss that alert view.
Any ideas about how to do this?
Thx!

this is what i use. I added in an ActivityIndicator just for looks
UIActivityIndicatorView *loadingInd = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(120.0, 90.0, 30.0, 30.0)];
alertView = [[UIAlertView alloc] initWithTitle:@"Loading" message:@"Telling your Mom" delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
loadingInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
[loadingInd startAnimating];
[alertView addSubview:loadingInd];
[loadingInd release];
[alertView show];
[alertView release];

Similar Messages

  • How to Make A Video Call (without FaceTime) from iPhone 4?

    I would like to make a video call from my iPhone 4 just like the way all the 3G devices nowadays do (not using the FaceTime, Fring, Tango or Skype).
    I want to make video calls to other smartphones using the below facility provided by my telecom service provider :
    http://www.rcom.co.in/Rcom/personal/3G/HTML/VideoCalling.html
    The above feature charges a nominal amount for the video calls, and does not require any data to make the call, and they are also quite good in quality.
    Also, when my friend calls me using this feature from his Nokia C7, he gets the error "The mobile phone you are trying to make a video call to, does not support it"
    For the record, I'm using iOS 4.2.1.
    Any help would be greatly appreciated.

    After the skype 5 headache which many users are experiencing, I just found "" vtok "" in apples app store.
    It supports VIDEO and CALL over wifi AND 3G !!  It does work fantastic and is FREE.
    BUT you would have to set up a free "Google mail" address to get it to work.
    It's painless and is a great option.
    Amen

  • Re: [SunONE-JATO] Re: How to use a tiled view without a model

    I'm not sure what is different for you now. You still parse the string
    and put it into a data structure. Before the data structure was a
    vector, in JATO its just a model with a "hidden" data structure (a hash
    map).
    MVC only really comes into play when you talk about where your write
    this code, and where the data structure is being stored. So really, JATO
    takes care of half of the MVC'ness of it all (where the data is store).
    You just decide where to be the code to populate the model.
    Make sense?
    Is there something different required of you in JATO in this scenario
    that I am not grasping?
    c
    Hoskins, John D. wrote:
    Thanks for the feedback.
    The problem I was solving involved a single string, which contained
    delimited subsets of information.
    The string looked like
    this:"time|analyst|description|time|analyst|description|..."
    In ND, I parsed it apart into it's components (time vector, analyst vector,
    description vector), populated the repeated.
    With JATO, how would I make a model for something that doesn't have a
    database component like this?
    I'm pretty new to this MVC thing, so bear with me.
    John D. Hoskins
    Telephone & Data Systems
    Application Development & Support
    Voice: 608.664.8263
    Fax: 608.664.8288
    Email: john.hoskins@t...
    -----Original Message-----
    From: Craig V. Conover [mailto:<a href="/group/SunONE-JATO/post?protectID=219212113009229091025149066024064239039098031198039130252055210">craig.conover@s...</a>]
    Sent: 6/26/2002 3.22 PM
    Subject: Re: [SunONE-JATO] Re: How to use a tiled view without a model
    I guess the only thing "weird" (for lack of a better term) about what
    you are doing is that your are populating the model on the "display
    cycle". Typically, the cycle goes like this:
    Request -> populate model -> update data store -> retrieve data to
    populate model -> display data
    some of the above steps are optional but hopefully you get the point I
    am making.
    So what you are doing is:
    Request -> populate model/display data
    If it works for you, then it's not necessarilly wrong. But I would
    probably have my model populated before I forwarded to the target
    (displaying view bean) or at a minimum, in the begin display event of
    the view bean or the tiled view, but not during the iteration of the
    tiled view.
    c
    jhoskins wrote:
    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- Craig V. Conover wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    Craig,
    Thanks for the pointers. I ended up doing something else. I set the
    models setSize() method to set the max size, and as the tiles fields
    iterated, populated the value from some vectors I had the data in
    already. Is this solution fraught with peril and will ultimately fail,
    or should I try your way?
    John
    --- "Craig V. Conover" wrote:
    John,
    Check out the docs for DefaultModel. There is an appendRow() method.
    So get your tiledview's primary model (the tiledview's primary model
    should be set to use an instance of DefaultModel), model.appendRow(),
    then model.setValue("fieldname", value) for each value.
    Rinse, repeat as needed.
    c
    jhoskins wrote:
    I would like to use a tiled view, but populate the fields manually.
    Any pointers about where I can set the size of the tiled view? I tried
    setMaxDisplayTiles() in the beginDisplay, but it won't get down and
    generate the rows.
    John Hoskins
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • How to make email link with a button with AC2 in flash cs3?

    How to make email link with a button with AC2 in flash cs3?
    I wrote this, but it does not work:
    btn_emailinfo.on (release) {
    getURL("mailto:"[email protected]");
    }

    I am guessing you put that on a frame?
    If so, the syntax is as follows:
    btn_emailinfo.onRelease = function(){
    getURL("mailto:[email protected]");
    Though, if you are placing it directly on the button itself,
    the syntax is:
    on(release){
    getURL("mailto:[email protected]");
    }

  • How to mak Firefox Cache Viewer ?

    how to make Firefox Cache Viewer  in vb.net ?

    Hi,
    Since this question is more related to this 3rd-party product(Need to use API), you'd better to ask question at its official website for better support.
    Thank you for your understanding.
    Best Regards,
    Franklin
    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.

  • How can I download and view a pdf with iphone?

    How can I download and view a pdf with iphone?

    If the PDF is an email attachment, you can view it by tapping on the attachment icon while you are viewing the email message. Another option is to set up a dropbox account and then use a computer to drop the PDF into your account. Install the iOS dropbox app and you can view PDFs there that way.

  • Can't make or receive calls without speaker on Iphone 4

    can't make or receive calls without speaker on Iphone 4

    Hi Susan,
    Thanks for visiting Apple Support Communities.
    You can use the steps in this article to troubleshoot your iPhone:
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    Best,
    Jeremy

  • How can I restore the "Sync Now" button on iPhone 5?

    How can I restore the "Sync Now" button on iPhone 5? (using iTunes 11.0.2) All software up to date and sync works by WiFi or USB if initiated from iMac. Bento syncs fine from iPhone 5.  The "Sync Now" button just doesn't appear anymore.  All I see is the message to connect by cable and click "Sync this phone over Wi-Fi". I have tried that and turned things off and restarted and re everythinged - no button. Syncs fine on WiFi if the computer initiates it.  Wife's phone bought same day - no problem.

    From iTunes' help:
    Turn on Wi-Fi syncing
    Connect your iPod touch, iPhone, or iPad to your computer and select your device.
    Click Summary.
    Select “Sync with this device over Wi-Fi.”
    Disconnect your device from your computer.
    Your device still appears in the Devices pop-up menu in iTunes unless you click the Eject button .
    If you click Eject, your device is removed from the Devices pop-up menu, but Wi-Fi syncing remains turned on. Your device reappears in the Devices pop-up menu the next time you open iTunes.

  • How to make a proactive view of the Logical Disk Free Space

    Hello,
    I was wondering how I could make a view (preferably within a dashboard) that monitors the state of the Logical Disk Free Space values for one or more predefined groups. I can only get this to work with line diagrams but that is pretty hard to read.
    I would like to make views like:
    1) A simple state view that shows the state of the servers (or disks) in three state form (1. Healthy: 80% or lower; 2. Warning: Between 80% and 90%; 3. Alert: 90% or higher).
    2) A view of actual percentages of the disk drives in a table form rather than the usual line diagram.
    I prefer the first one the most and seems to be the easiest aswell but I can't seem to get this to work.
    I hope that this is possible any like to know how to achieve this.
    Thanks in advance,
    Bram

    Hi Bram,
    I think you need to create a new dashboard view for this.
    Make a new management pack for this.
    Once you create a new management pack.
    Go to monitoring TAB
    Locate the management pack there and right click and select new Dashboard.
    Create a summary view dashboard and then once it is created on the right hand side you will see something like
    Performance (Which i edited as LDS report for last 24 hrs as per the screenshot)
    Above that you will have a configure option. Click on it and mention the Object, counter and instance and of the LDS performance counter and mention the report duration (Last 1hr or  24 hrs )once you do this dashboard will start collecting the report
    for you.
    Once you scroll down the report you will get the list of servers in which space is low and how old is that alert
    Below is the screenshot for your reference.
    Gautam.75801

  • How to make a caution for a button

    I want that when i press a button the system should ask the question that do i really want to run the process of that button. If i press yes it should run that process otherwise no. How to make such kinda caution or something like that?
    Thanks

    Hi
    Pls try to look for the Forms On-Line Help for how to create an alert...
    besides this Video Hope it helps....
    Good Luck :)
    Regards,
    Amatu Allah.

  • How to make a navigation bar with buttons that stay highlighted

    I have Dreamweaver MX 2004. I know how to make a simple nav
    bar, but how do you make it so it's like the Apple website, with
    buttons that stay highlighted on the appropriate page?

    "[email protected]" <[email protected]>
    wrote in message
    news:gd04sb$5mc$[email protected]..
    >I have Dreamweaver MX 2004. I know how to make a simple
    nav bar, but how
    >do you make it so it's like the Apple website, with
    buttons that stay
    >highlighted on the appropriate page?
    http://divahtml.com/products/divaGPS/current_menu_location.php
    Thierry
    http://www.TJKDesign.com/go/?0
    | Articles and Tutorials
    http://divahtml.com/products/scripts_dreamweaver_extensions.php
    | Extensions
    that keep your markup clean
    http://www.fourlevel.com/ |
    CSS Menus, Gallery, Tab Panels, etc

  • How to make a multiple request without waiting for a response in java ?

    A more specific question:
    how to make a multiple HTTP request without waiting for a HTTP response in java (using httpURLConnection)?
    Thanks

    Thanks for responding.
    But i want to make further request to the same resource URL. I want to reuse the connection, don't want to create a new connection for each of individual request.
    How can i do that using HttpURLConnection ?
    Thanks.

  • HT5293 how to make our folder hidden, without writing in terminal console in apple mac book air OSX10.8.5

    Hey all users
    I am using this mac book air OSX10.8.5.
    i NEED TO ASK THAT HOW TO MAKE OUR FOLDER HIDDEN IN THIS , WITHOUTING PUTTING ANY COMMAND IN TERMINAL CONSOLE.
    PLS SUGGEST . WHAT IS THE PROCEDURE IF ANYBODY KNOW ABOUT THIS .

    First don't write in all caps, that's tantamount to shouting and hurts our eyes. You can't. Using the Terminal app is simple and detailed in https://discussions.apple.com/message/16507198#16507198

  • How to make a scroll Bar with buttons

    Hi all,
    I am using Flash cs6 on an iMAC running 10.7.2
    I would like to know if anyone could please point me to a tutorial, showing "how to create a scroll bar with buttons". I am having a heck of a time finding a tutorial.
    Many thanks in advance.
    regards,
    DH

    http://learnola.com/2008/10/27/flash-tutorial-create-a-custom-scrollbar-with-actionscript/

  • How do you get street view back on the iPhone 6.0

    i want to know how to get the street view back onto my maps

    See this article:
    Street View for Google Maps web app goes live

Maybe you are looking for

  • Error: Untrusted Server Certificate

    When i click on Query Interfaces (IPS Manager: Configuration > Settings > Interfaces) i get the following error: An error occurred trying to get the interface information. An error occurred while trying to determine the sensor version. Detail = Error

  • How well will Premier run on a MacBook Pro Retina i7 with only 8GB of RAM?

    My niece wants to do some video editing using Premier and we were wondering if there would be a problem running it on a MacBook Pro with i7 and retina display with only 8GB of RAM? I know 16GB would be better but that is not an option at this point.

  • How to remove OLD mobile number (I don't have access) from iMessage?

    Hello, I have a problem which I could not find a solution for it yet, Please help me if you had an experience on this matter. I can not remove the mobile number I DO NOT have now from iMessage. I did try to disable/enable iMessage many times but had

  • Home Videos on atv....

    Hello all, I have been using my mac for over a year now and still feel quite "newbish" about it. Any way I want to play my home videos on my 55" hdtv. Now all of the files have been converted via HB to appletv requirements. My question is do all movi

  • Ajax submit failed: error =403

    Getting this error when I try to create an HP Web Services account at the hp eprint center. The eprint center also does not accept my same emai/userid/password combo that I use for this forum, or for any other HP login. I've also tried using the emai