mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
removing reloaddata that led to worst bug ever
This commit is contained in:
parent
e1b0b6b17b
commit
380de81e7b
4 changed files with 6 additions and 3 deletions
|
@ -150,7 +150,6 @@
|
|||
self.pageFetching = NO;
|
||||
self.pageFinished = NO;
|
||||
self.feedPage = 1;
|
||||
[self.storyTitlesTable reloadData];
|
||||
}
|
||||
|
||||
#pragma mark -
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
// LOCATION
|
||||
if ([profile objectForKey:@"location"] != [NSNull null]) {
|
||||
UILabel *location = [[UILabel alloc]
|
||||
initWithFrame:CGRectMake(kTopBadgeTextXCoordinate + 20,
|
||||
initWithFrame:CGRectMake(kTopBadgeTextXCoordinate + 16,
|
||||
yCoordinatePointer,
|
||||
190,
|
||||
20)];
|
||||
|
@ -180,7 +180,7 @@
|
|||
self.userLocation = location;
|
||||
[self addSubview:self.userLocation];
|
||||
|
||||
UIImage *locationIcon = [UIImage imageNamed:@"flag_orange.png"];
|
||||
UIImage *locationIcon = [UIImage imageNamed:@"7-location-place.png"];
|
||||
UIImageView *locationIconView = [[UIImageView alloc] initWithImage:locationIcon];
|
||||
locationIconView.Frame = CGRectMake(kTopBadgeTextXCoordinate,
|
||||
yCoordinatePointer + 2,
|
||||
|
|
|
@ -166,6 +166,7 @@
|
|||
43B8F029156603180008733D /* NewsBlurViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43B8F01F156603170008733D /* NewsBlurViewController.xib */; };
|
||||
43B8F02A156603180008733D /* OriginalStoryViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43B8F020156603170008733D /* OriginalStoryViewController.xib */; };
|
||||
43B8F02B156603180008733D /* StoryDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 43B8F021156603170008733D /* StoryDetailViewController.xib */; };
|
||||
43C1680B15B3D99B00428BA3 /* 7-location-place.png in Resources */ = {isa = PBXBuildFile; fileRef = 43C1680A15B3D99B00428BA3 /* 7-location-place.png */; };
|
||||
43C95C3F158BCDD70086C69B /* 19-circle-check.png in Resources */ = {isa = PBXBuildFile; fileRef = 43C95C3D158BCDD70086C69B /* 19-circle-check.png */; };
|
||||
43C95C40158BCDD70086C69B /* 19-circle-check@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 43C95C3E158BCDD70086C69B /* 19-circle-check@2x.png */; };
|
||||
43C95C42158BD13D0086C69B /* category_selected_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 43C95C41158BD13D0086C69B /* category_selected_background.png */; };
|
||||
|
@ -454,6 +455,7 @@
|
|||
43B8F01F156603170008733D /* NewsBlurViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NewsBlurViewController.xib; sourceTree = "<group>"; };
|
||||
43B8F020156603170008733D /* OriginalStoryViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = OriginalStoryViewController.xib; sourceTree = "<group>"; };
|
||||
43B8F021156603170008733D /* StoryDetailViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StoryDetailViewController.xib; sourceTree = "<group>"; };
|
||||
43C1680A15B3D99B00428BA3 /* 7-location-place.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "7-location-place.png"; sourceTree = "<group>"; };
|
||||
43C95C3D158BCDD70086C69B /* 19-circle-check.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "19-circle-check.png"; sourceTree = "<group>"; };
|
||||
43C95C3E158BCDD70086C69B /* 19-circle-check@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "19-circle-check@2x.png"; sourceTree = "<group>"; };
|
||||
43C95C41158BD13D0086C69B /* category_selected_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = category_selected_background.png; sourceTree = "<group>"; };
|
||||
|
@ -896,6 +898,7 @@
|
|||
431B857615A132B600DCE497 /* Images */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
43C1680A15B3D99B00428BA3 /* 7-location-place.png */,
|
||||
43F6A79815B0C57F0092EE91 /* flag_orange.png */,
|
||||
43A4C3E715B00A26008787B5 /* 06-arrow-south.png */,
|
||||
43A4C3E815B00A26008787B5 /* 06-arrow-south@2x.png */,
|
||||
|
@ -1671,6 +1674,7 @@
|
|||
43A4C49C15B00A26008787B5 /* world.png in Resources */,
|
||||
43A4C49E15B00CD3008787B5 /* Entitlements.entitlements in Resources */,
|
||||
43F6A79915B0C57F0092EE91 /* flag_orange.png in Resources */,
|
||||
43C1680B15B3D99B00428BA3 /* 7-location-place.png in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
BIN
media/ios/Resources/7-location-place.png
Normal file
BIN
media/ios/Resources/7-location-place.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 987 B |
Loading…
Add table
Reference in a new issue