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 6908707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:35:50+00:00 2026-05-27T08:35:50+00:00

Hi there I am wanting to make a personal rain radar application with information

  • 0

Hi there I am wanting to make a personal rain radar application with information from my local weather service website.
I would like to have only the rain radar display in my application that you are able to see in this link

http://www.metservice.com/national/maps-rain-radar/rain-radar/auckland

I am wondering if it is possible to call the images from and create my own little player. I used googles source viewer and have figured out which parts of the code contain the images but I’m just not sure how I could make use of them.

enter image description here
enter image description here

any help would be greatly appreciated

  • 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-27T08:35:50+00:00Added an answer on May 27, 2026 at 8:35 am

    You’ve got a fair amount of work ahead of you, but this would be a good learning experience.

    First, you’ll need to obtain the contents of the web page in HTML form. Apple has a tutorial demonstrating how to use NSURLRequest and NSURLConnection to do so:

    URL Loading System Programming Guide

    Once you have obtained the data from that link, you can skip creating an NSString, and just jump right into an XML parser. Though, if you do need to create a string for other uses, you can use:

    NSString *stringWithHTMLData =
                [[NSString alloc] initWithData:webPageData
                                  encoding:NSStringUTF8Encoding];
    

    Once you have the HTML data, you can use an XML parser to look through the HTML and find the URLs of the images you want to display:

    NSXMLParser *parser = [[NSXMLParser alloc] initWithData:webPageData];
    

    The NSXMLParser class reference would be of help in determining how to traverse the HTML:

    NSXMLParser Class Reference

    Once you have parsed the URLs and have them, you can actually create the NSImage objects with the URLs, and they will lazily load from the web page:

    NSURL *firstImageURL = ...;
    NSImage *image = [[NSImage alloc] initByReferencingURL:firstImageURL];
    // Do something with the image, like adding it to a view somewhere
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wanting to make a reusable 'landing page' activity similar to like the
Is there a way to override / disable a system preference pane? I'm wanting
There seem to be very different opinions about using transactions for reading from a
There's always skepticism from non-programmers when honest developers learn the techniques of black hat
I'm wanting to make a CoreData entity called Employees, some Employees could have a
Is there any way to make a class instance return a value which is
I am wanting to develop a web application, what is the current state of
I'd like to make an associative array in PHP where the key is a
so I'm pretty much wanting to make my code cleaner, and all of my
Possible Duplicate: Client Id for Property (ASP.Net MVC) Is there a way to make

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.