Quantcast
Channel: User Sargis - Stack Overflow
Browsing latest articles
Browse All 37 View Live
↧

Comment by Sargis on Updating Location every x seconds iOS

see this tutorial ioscreator.com/tutorials/…

View Article


Comment by Sargis on How to keep alive application when app is in suspended...

for objective-c see this tutorial: ashishkakkad.com/2016/09/… for swift see this tutorial: makeapppie.com/2016/08/08/…

View Article


Comment by Sargis on iOS getting User's Facebook ID & friends List with...

In your question you wrote "This returns user's Facebook id, friend list but doesn't return profile picture URL of friends."

View Article

Comment by Sargis on Loading a custom UIView from xib

Possible duplicate of question about init and load from xib for a custom UIView

View Article

Comment by Sargis on why use storyboard push a viewcontroller shows black screen

Possible duplicate of UINavigationController shows black screen after pushing a view

View Article


Comment by Sargis on iOS app exception on app start (doesn't crash the app)

see here: stackoverflow.com/questions/26127004/…

View Article

Comment by Sargis on Repeat local notification for specific date iOS 10

UNCalendarNotificationTrigger *trigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:triggerDate repeats:YES];

View Article

Comment by Sargis on Programmatically delete Remote Notifications from...

Possible duplicate of Remove single remote notification from Notification Center

View Article


Comment by Sargis on See if another app is downloaded Xcode Objective-C

You must whitelist the url's that your app will call out to using the LSApplicationQueriesSchemes key in your Info.plist. <key>LSApplicationQueriesSchemes</key> <array>...

View Article


Comment by Sargis on Get and show images from Facebook in iOS app

I think this problem connected to permissions.

View Article

Comment by Sargis on Xcode 12: error: Could not load code generator

Thx @RYZheng. Yes, I tried clean, build, and checked ".xcdatamodeld" file, all correct, there are no conflicts.

View Article

Comment by Sargis on upgraded iOS 14 at iPhone 11 , facing UIPickerview issue

Ah, ok. It's strange, because for UIPickerview, not any changes in iOS 14

View Article

Comment by Sargis on Specified custom URL scheme is (null) but Info.plist do...

@SudarshanThorve The error is saying that your dynamic link has a specified URL scheme of (null), which probably means there's a problem with the link itself.

View Article


Answer by Sargis for How to take ScreenShot Of UIView Which is not in memory iOS

Use this:- (UIImage*)snapShot:(UIView*)myView { UIGraphicsBeginImageContext(myView.frame.size); [myView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viewImage =...

View Article

Answer by Sargis for UIAlertController Action isnt working?

Try this:UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {//your code here ... }];

View Article


Answer by Sargis for Using CIDetector to scan bar Codes (1 and 2 dimentional)

Use ZXinglibrary.ZXingObjC is a full Objective-C port of ZXing ("Zebra Crossing"), a Java barcode image processing library. It is designed to be used on both iOS devices and in Mac applications.

View Article

Answer by Sargis for Objective C - how to play animated gif image

Use FLAnimatedImage library#import "FLAnimatedImage.h"NSURL *url = [[NSBundle mainBundle] URLForResource:@"animated-f" withExtension:@"gif"]; NSData *data = [NSData...

View Article


Answer by Sargis for why use storyboard push a viewcontroller shows black screen

You need to use the instantiateViewControllerWithIdentifier: method of your UIStoryboard instance and then you can push the controller.

View Article

Answer by Sargis for I get this error when I user dictionary `set value for key`

Use NSMutableDictionary:NSMutableDictionary *dict = [NSMutableDictionary new];...

View Article

Answer by Sargis for iOS Date format 28 Mar 2016 / 16:54pm

See Instruction or introduction with every lineNSString *str = @"your date here..."; /// here this is your date with format yyyyy-MM-dd'T'HH:mm:ss.SSSZNSDateFormatter *dateFormatter = [[NSDateFormatter...

View Article

Answer by Sargis for How to import sqlite file into app's document directory...

// Returns the persistent store coordinator for the application.// If the coordinator doesn't already exist, it is created and the application's store added to it.- (NSPersistentStoreCoordinator...

View Article


Answer by Sargis for Converting MPMediaItem to NSData

Try this:-(void)mediaItemToData : (MPMediaItem * ) curItem{ NSURL *url = [curItem valueForProperty: MPMediaItemPropertyAssetURL]; AVURLAsset *songAsset = [AVURLAsset URLAssetWithURL: url options:nil];...

View Article


Answer by Sargis for Current Week Start and End Date

//Begining of Week Date- (NSDate*) beginingOfWeekOfDate{ NSCalendar *tmpCalendar = [NSCalendar currentCalendar]; NSDateComponents *components = [tmpCalendar...

View Article

Answer by Sargis for Getting crash while adding attributes to...

Use this:NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"I have read, understand and agree to the following terms and conditions and web usage policy."...

View Article

Answer by Sargis for My tableViewCells not created?

Use this.- (void)viewDidLoad {[super viewDidLoad];self.displayDataTableView.delegate = self;self.displayDataTableView.dataSource = self;self.dateArray = [[NSMutableArray alloc]init];self.amountArray =...

View Article


Answer by Sargis for How can I get the current day of the current year in...

Use this. //Assuming your calendar is initiated like thisNSCalendar *_calendar = [NSCalendar currentCalendar];NSInteger yearlyDay;//Fetch the weekOfYear numberNSInteger weekOfYear = [_calendar...

View Article

Answer by Sargis for How to detect number length in UITextField?

Use this.- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{// _textLenghtLimit = your text max lenght if (_textLenghtLimit...

View Article

Answer by Sargis for how to detect that app is opening from safari redirect?

Need use "Implementing a Custom URL Scheme"see here:http://www.idev101.com/code/Objective-C/custom_url_schemes.html

View Article

Answer by Sargis for How we can get distance between two places's coordinate...

You need to use these coordinates to get the CLLocations for the respective coordinates using the following line of codeCLLocation *location1 = [[CLLocation alloc] initWithLatitude:lat1...

View Article



Answer by Sargis for Single view application has a black background which...

Use this code.- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. self.window =...

View Article

Answer by Sargis for Objective-C - UIAlertView doesn't delegate

Use this code. (UIAlertView is deprecated since iOS 9.0.)UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Idioma" message:@"" preferredStyle:UIAlertControllerStyleAlert]; [alert...

View Article

Answer by Sargis for How to remove all navigationbar back button title

for swift 4,5let BarButtonItemAppearance = UIBarButtonItem.appearance()BarButtonItemAppearance.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.clear], for: .normal)

View Article

Answer by Sargis for You don't have write permissions for the...

Try this:sudo gem install cocoapods --user-installWorked for me

View Article


Answer by Sargis for dynamic cell height for custom uitableviewcell not working

Try this:tableView.rowHeight = UITableViewAutomaticDimension;tableView.estimatedRowHeight = 44;

View Article

Answer by Sargis for How to know Image file Size when using SDWebImages?

Try this:imageView.sd_setImage(with: URL(string: imgUrl), completed: { (image, error, cache, url) in let imageSize = image?.size print("imageSize", imageSize) var imgData: NSData = NSData(data:...

View Article

Answer by Sargis for How to left align UICollectionViewCells when scrolling...

This code works for me for scrollDirection = .horizontal import UIKitclass LeftAlignedHorizontalCollectionViewFlowLayout: UICollectionViewFlowLayout { required override init() {super.init(); common()}...

View Article


Answer by Sargis for Type does not conform to protocol 'Decodable' or...

Removecase party = "party" lineor open// let party: Referenz -> Party? line

View Article

Browsing latest articles
Browse All 37 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>