We are seeing is when "tying" to video files together.
Example we have Ad video that is segmented and content file which is also segmented.
We create a new file which has both Ad and content segment information together. However we are seeing an issue where either the Ad content is truncated or the content starts having A/V sync issues....
Hi all, I have Core Data working in my app. So, I fetch an XML file, parse the data into model objects and insert them into core data. They are saved in the persistent store and I can access them when I relaunch the app. However, I want to be able to refresh the data in the persistent store at will, so I need to first remove existing ...
check this out:
template <class T>
class Test: public T
{
public:
void TestFunc()
{
T::SubClass bob;
}
};
this fails when compiling for iPhone (expected ';' before 'bob'). works on other platforms
this is a simplified example of what we are actually trying to do, which is inherit from an std::map<> and inside tha...
I'm developing with the iPhone 3.1.3 SDK against an iPhone 3GS with the 3.1.3 OS. My app has a tab bar with seven items of which only two contain something meaningful. So for the remaining items, I un-checked the "Enabled" box in the "Tab Bar Item" attributes (first page, "Bar Item" section).
That works fine for the two visible tab ba...
check this out:
this compiles fine on iPhone:
typedef int ATYPE;
void AFunc()
{
ATYPE ATYPE;
ATYPE = 1337;
}
this compiles fine on iPhone:
typedef int ATYPE;
typedef ATYPE _ATYPE;
struct AStruct
{
_ATYPE ATYPE;
};
void AFunc()
{
AStruct bob;
bob.ATYPE = 1337;
}
but this does NOT:
typedef int ATYPE;
struct ...
So I have an iPhone application running that is controlled at the highest level by a UITabBarController. It is the default black Tab Bar at the bottom that you see in many iPhone apps. I am kind of new to iPhone SDK programming, and I know I have seen other apps that have their own background color for the Tab Bar at the bottom. I am not...
I have added a subview onto my main view and wish it to have a small shadow, feathered.
Is there a way?
...
I am running a Post call to a URL and logging into a system. This is working, but after the login, I am attempting to retrieve the cookies – but when I do this:
NSArray *allCookies = [NSHTTPCookie cookiesWithResponseHeaderFields:[response allHeaderFields] forURL:[NSURL URLWithString:mywebsite"]];
NSLog(@"How many Cookies: %d", allCooki...
Hi
I want to use Neon SIMD instruction for the iphone.
I heard we have to put flags "-mfloat-abi=softfp -mfpu=neon" in the "Other C Flags" field of the Target inspector, but when building I get "error: unrecognized command line option "-mfpu=neon"" .
Is there anything else special that has to be done to allow this flag? (I have Xcode...
Is it possible to adjust the alignment, from the default centered, of a stroke when using kCGPathFillStroke as the drawing mode?
For example, when drawing a closed path using:
CGContextDrawPath(context, kCGPathFillStroke);
The stroke lies 50% outside/50% inside the drawn path. The stroke color has a non-opaque alpha so the net effect...
Setup:
I have two views that I need to respond to the touch event, and they are layered out on top of one another.
View 1 is on top of View 2. View 2 is a UIWebView. View 1 is sublclassed to capture the touch event.
My problem is that if I try to call the UIWebView event handlers (touchesBegan: and touchesEnded:) from within the event...
I have an instance variable defined and synthesized as a property like so:
@interface CardFrontView : GenericCardView {
UIImage *_letterImage;
}
@property (nonatomic, retain) UIImage *letterImage;
@end
@implementation CardFrontView
@synthesize letterImage = _letterImage;
...
I set the letterImage property in -init:
- (id)initW...
I want to my app launch itself after install.I am not sure whether this is true.I note that pxl files usually has the postflight file and it contains "launch" chars and it relating a plist file.So,Can I launch my GUI app via some sh commandline ?
...
My app brings up a ABPersonViewController and gives the user the option to edit, or to select the contact. I can easily allow editing (pvc.allowsEditing = YES) but I can't figure out how to add the Select button. I would prefer to add it to the ABPersonViewController as a custom button like the Text Message, etc. default buttons.
...
Hello guys.
I am making iphone application with Xcode.
I create a webView to load a web page. I load the following link:
http://devfiles.myopera.com/articles/649/example3.html
If I open that link by browser on computer, we can draw by mouse.
But on iPhone, the browser itself screen is moving. So I can not draw on it.
Please tell me ...
Hello everyone
As I know, I can use global variable transfer the value among the multi viewcontrollers of a project.
But I hope to know the best way to transfer NSString variables between multi viewcontrollers and the way to avoid memory leak.
Welcome any comment
Thanks
interdev
...
I have an alertview which displays fine.
In my header I've included the UIAlertViewDelegate, but for some reason whenever I click a button on the alert view my app crashes with a bad excess, saying that an unrecognized selector was sent.
Any ideas would be helpful. I have the exact same code running in other classes with no problem at a...
i want to test on iphone/ipod
thanks
...
Hello, I am kinda new with iPhone development and I'm having a bit of trouble with an apparently very simple thing.
- (IBAction) addButtonPressed:(id) sender {
AddDrinkViewController *addDrinkVC = [[AddDrinkViewController alloc] initWithNibName:@"DrinkDetailView" bundle:nil];
UINavigationController *addNavCon = [[UINavigationContr...
Hi guys,
I'm having a problem with this:
-(id)initWithName:(NSString *)n description:(NSString *)d url:(NSString *)u {
I'm not really sure whats going on here, is the mehtod initWithName being passed an argument of n which is being casted to an NSString ? and is also being passed an argument d which is being casted to an NSString als...