Tagged Questions
2
votes
2answers
50 views
How to avoid fetching the sub entities in a relationship
Assume I have 3 entities, X, Y, Z.
X has a to-many relationship "Ys" pointed to Y, and Z is a sub entity of Y.
In my situation, I want to fetch all the "Y"s of a given X, but I don't want any Z.
...
1
vote
1answer
203 views
Saving and Deleting NSManagedObject & NSManagedObjectContext
Three Questions but they are all related. If you like I can divide them into three questions so that you can more credits. Let me know if you'd like for me to do that.
I have the following code ...
0
votes
1answer
78 views
Fetching data using join-table in CoreData
I have three tables with relations like on the picture below.
With the help of Mark Kryzhanouski (CoreData many-to-many relationship) I know how to access to the set of all ingredients in some ...
0
votes
1answer
74 views
Background thread and multitasking in ios?
I am a newbie to iOS. I have a requirement where I need to fetch data from a local database and upload it to a server. This has to be done in the background when the internet connection is available. ...
1
vote
1answer
63 views
Is there an alternative for using JSON + NSTimer for fetching datafrom server?
Im using NSTimer for constant data fetching from my server using JSON.
Using this technique has a lot of disadvantages, such as unwanted data fetching, and battery life drain.
An example of this ...
0
votes
0answers
85 views
Unable to fetch entity from nsset by attribute on subsequent attempts
2 entities: User and Buildings.
User has an attribute with type NSSet named buildings
I want to retrieve the Buildings entity from NSSet by attribute guid.
On the first run of the application, ...
0
votes
0answers
176 views
iOS in app purchase , auto renewable subscription
I am new to iOS. currently working on in app purchase implementation in my newsstand app.
Trying to implement auto renewable subscription in my newsstand app. But stuck with an issue., when i'm ...
0
votes
0answers
63 views
Fetching Data with datawithcontentsulr always null ios
This must be simple but i can't get it done,
the one that can be fetched small json data
NSURL *request = [NSURL URLWithString:[NSString ...
0
votes
0answers
94 views
Data fetching really slow from webservice
I have the following webserivce.
"club": {
"staff": [ … ],
"trainingen": [ … ],
"team": [
{
"name": "Baerts Lennert",
"number": "0",
...
2
votes
1answer
65 views
Fetch data in background
Is there an iOS function that would allow an application to "fetch" data even when the application isn't currently running? I'm looking for something similar to the email settings where you can ...
0
votes
1answer
241 views
Core Data fetch request and unsaved changes
i have a problem. My iOS app is behaving really strange when it comes to fetching some data and having unsaved changes. For your interest the whole behavior appears while syncing some data with a web ...
0
votes
1answer
128 views
Core Data Predicate: all Groups with Activity on an NSDate?
I have the following data model:
Group(name, color, activities*) // one group may have many activities
Activity(startTime, endTime, location, Group*) // startTime and endTime are NSDate, group is an ...
3
votes
2answers
127 views
Core Data returns a different object instance for the same NSManagedObject each time I fetch it. Why is this?
I have recently noticed that if I fetch a ManagedObject of which I can verify that there is only one in the model and which is not retained anywhere in my application, every time the fetch returns the ...
0
votes
0answers
116 views
iOS local database accessing issues
We are developing an iPhone calender application which we are using ical to sync with other people's calender event.
We would like to design the application first fetch local database to display data ...
0
votes
4answers
215 views
not able to fetch data from NSUrl in objective c
i made iPad application, i want to fetch data from this url,
http://ipad.idealake.com/stockquote.aspx?id=SBIN
and i want to store this data into string,
so i written this, but it doesn't take data ...
2
votes
1answer
392 views
CoreData Fetching Entities
I have a pretty basic question.
If I have two entities with a relation between them (lets say entityOne has a to-many relationship to entityTwo).
When I fetch entityOne, does it automatically fetch ...
0
votes
1answer
300 views
core data simple Fetch
Im using coredata to check the content of an entity, but still remembering how to go about to do it,
PFIWIAppDelegate* delegate = (PFIWIAppDelegate*)[[UIApplication sharedApplication] delegate];
...
0
votes
1answer
1k views
ios and coredata: NSPredicate does not work on fetch request
I have the following class
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Bankdaten : NSManagedObject
@property (nonatomic, retain) NSString * blz;
...
2
votes
2answers
981 views
Objective-c Substring Range Exception
I am creating an imap client. I want to parse body and header of incoming data but it crashes. I couldn't understand why it crashes and gives substring out of range error. How can I fix it?
I only ...
1
vote
0answers
219 views
iOS Periodic Sync with Web Service
Background:
I have already written an Android application that periodically syncs a database with a web service (using the abstract threaded sync adapter in the framework).
Question:
I've read lots ...
0
votes
1answer
294 views
SQL Request in Core Data
I know how to write the request I need in SQL but can't find a way to implement it using Core Data, or if I find a solution it would be ugly and messy, using 20+ lines of code...
My request is SELECT ...
1
vote
2answers
180 views
Integrating Google Images into App
I just have a general question: has anyone successfully implemented a way to show a google image of a term in an iOS app (or any app, for that matter). Say the user types in 'rocket launch', the app ...
6
votes
3answers
4k views
Fetch all events from EventStore EventKit iOS
i would like to know how to fetch all events from an EventStore using EventKit in iOS.
This way i can specify all events for today:
- (NSArray *)fetchEventsForToday {
NSDate *startDate = ...
0
votes
1answer
106 views
CoreData: two level fetchRequest on addition
I have a Core Data that stores Movies and Actors.
I get the list of movies through json. Each Movie has a cast(Actor, role)
So I have Movie, Actor, ActorRole entity.
When i receive the list of ...


