[Solved] Draw male and female gender symbols in iOS

An example for drawing the female symbol. First, make a Layer using UIBezierPath to draw it: import UIKit class FemaleLayer: CAShapeLayer { override var frame: CGRect { didSet{ self.draw() } } private func draw() { self.lineWidth = 20.0 self.fillColor = UIColor.clear.cgColor self.strokeColor = UIColor.black.cgColor let path = UIBezierPath() let sideLength = fmin(self.frame.width, self.frame.height) let circlesRadius … Read more

[Solved] How to send image via mms in ios 7+ programmatically? [closed]

You can approach this by two ways, 1 – By using MFMessageComposeViewController 2 – By MMS In the first way you can send the image via iMessage In the second way you can send MMS via Career network For 1st process the code is -(void)sendSMSto:(NSString *)number withImage:(UIImage *)sentImage{ MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init]; if([MFMessageComposeViewController … Read more

[Solved] iPhone – Sprite Not Showing Up Because Background is Hiding It

As sangony said, this can be done through the node’s zPosition property. For example, if the background node is called ‘bgNode’ and the sprite is ‘spriteNode’ bgNode.zPosition = 0; spriteNode.zPosition = 1; This will render the spriteNode over top of the bgNode. This is assuming they share the same parent node. 0 solved iPhone – … Read more

[Solved] understanding ‘lldb’ backtace – app crashes when button is pressed

This is your problem: Foundation`-[NSObject(NSKeyValueCoding) setValue:forKey:] because after this, is raised an Exception: CoreFoundation`-[NSException raise] + 12 You are trying to set a value for a key in your object that could not exists or has some other problem. P.S.: Update your answer with some relevant code so I can update my answer with more … Read more

[Solved] iOS After NSDateFormatter Date is nil [duplicate]

Use a dateFormat string of @”yyyy-MM-dd HH:mm:ss Z” instead. Your dateFormat does not match the format of the string you’re trying to convert. By the way, there’s no point in converting [NSDate date] to a string and back again. Just use [NSDate date] and be done with it: NSDate *compareDateNow = [NSDate date]; NSComparisonResult result … Read more

[Solved] Sorting in Objective C [duplicate]

For a full explanation see this answer from a related question. In short you basically have to implement… – (NSComparisonResult)compare:(Contact *)otherContact; …in your Contact class (order of comparison: self, otherContact). NSComparisonResult has three possible values: NSOrderedAscending, NSOrderedSame and NSOrderedDescending. solved Sorting in Objective C [duplicate]