[ios] Implemented report problem's base UI.

This commit is contained in:
VladiMihaylenko 2016-03-09 16:18:36 +03:00 committed by Sergey Yershov
parent 9c484fb58b
commit 838578602c
20 changed files with 342 additions and 16 deletions

View file

@ -44,7 +44,8 @@ vector<MWMPlacePageCellType> const kSectionMetadataCellTypes {
};
vector<MWMPlacePageCellType> const kSectionEditingCellTypes {
MWMPlacePageCellTypeEditButton
MWMPlacePageCellTypeEditButton,
MWMPlacePageCellTypeReportButton
};
using TCellTypesSectionMap = pair<vector<MWMPlacePageCellType>, PlacePageSection>;
@ -65,7 +66,8 @@ MWMPlacePageCellTypeValueMap const kCellType2ReuseIdentifier{
{MWMPlacePageCellTypePhoneNumber, "PlacePageLinkCell"},
{MWMPlacePageCellTypeOpenHours, "MWMPlacePageOpeningHoursCell"},
{MWMPlacePageCellTypeBookmark, "PlacePageBookmarkCell"},
{MWMPlacePageCellTypeEditButton, "MWMPlacePageButtonCell"}};
{MWMPlacePageCellTypeEditButton, "MWMPlacePageButtonCell"},
{MWMPlacePageCellTypeReportButton, "MWMPlacePageButtonCell"}};
NSString * reuseIdentifier(MWMPlacePageCellType cellType)
{
@ -444,6 +446,9 @@ enum class AttributePosition
MWMPlacePageCellType const cellType = [self cellTypeForIndexPath:indexPath];
switch (cellType)
{
case MWMPlacePageCellTypeReportButton:
[static_cast<MWMPlacePageButtonCell *>(cell) config:self.ownerPlacePage isReport:YES];
break;
case MWMPlacePageCellTypeBookmark:
[(MWMPlacePageBookmarkCell *)cell config:self.ownerPlacePage forHeight:NO];
break;
@ -451,7 +456,7 @@ enum class AttributePosition
[(MWMPlacePageOpeningHoursCell *)cell configWithDelegate:self info:[entity getCellValue:cellType]];
break;
case MWMPlacePageCellTypeEditButton:
[(MWMPlacePageButtonCell *)cell config:self.ownerPlacePage];
[static_cast<MWMPlacePageButtonCell *>(cell) config:self.ownerPlacePage isReport:NO];
break;
default:
{

View file

@ -28,6 +28,7 @@
- (void)changeBookmarkCategory;
- (void)changeBookmarkDescription;
- (void)editPlace;
- (void)reportProblem;
- (void)share;
- (void)route;
- (void)reloadBookmark;

View file

@ -138,6 +138,11 @@ static NSString * const kPlacePageViewCenterKeyPath = @"center";
[self.manager editPlace];
}
- (void)reportProblem
{
[self.manager reportProblem];
}
- (void)share
{
[self.manager share];

View file

@ -2,6 +2,6 @@
@interface MWMPlacePageButtonCell : UITableViewCell
- (void)config:(MWMPlacePage *)placePage;
- (void)config:(MWMPlacePage *)placePage isReport:(BOOL)isReport;
@end

View file

@ -2,23 +2,33 @@
#import "MWMPlacePageButtonCell.h"
#import "Statistics.h"
#import "UIColor+MapsMeColor.h"
@interface MWMPlacePageButtonCell ()
@property (weak, nonatomic) MWMPlacePage * placePage;
@property (weak, nonatomic) IBOutlet UIButton * titleButton;
@property (nonatomic) BOOL isReport;
@end
@implementation MWMPlacePageButtonCell
- (void)config:(MWMPlacePage *)placePage
- (void)config:(MWMPlacePage *)placePage isReport:(BOOL)isReport
{
self.placePage = placePage;
self.isReport = isReport;
[self.titleButton setTitleColor:isReport ? [UIColor red] : [UIColor linkBlue] forState:UIControlStateNormal];
[self.titleButton setTitle:isReport ? L(@"report_problem") : L(@"edit_place") forState:UIControlStateNormal];
}
- (IBAction)editPlaceButtonTouchUpIndide
- (IBAction)buttonTap
{
[[Statistics instance] logEvent:kStatEventName(kStatPlacePage, kStatEdit)];
[self.placePage editPlace];
[[Statistics instance] logEvent:kStatEventName(kStatPlacePage, self.isReport ? kStatReport : kStatEdit)];
if (self.isReport)
[self.placePage reportProblem];
else
[self.placePage editPlace];
}
@end

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="9531" systemVersion="15A284" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9529"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9530"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
@ -31,7 +31,7 @@
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="edit_place"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="editPlaceButtonTouchUpIndide" destination="KGk-i7-Jjw" eventType="touchUpInside" id="ZyS-5r-oKK"/>
<action selector="buttonTap" destination="KGk-i7-Jjw" eventType="touchUpInside" id="aCZ-5a-EUl"/>
</connections>
</button>
</subviews>
@ -48,6 +48,9 @@
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="titleButton" destination="jmU-dJ-aRH" id="IXC-pf-YHH"/>
</connections>
</tableViewCell>
</objects>
</document>

View file

@ -14,6 +14,7 @@ typedef NS_ENUM(NSUInteger, MWMPlacePageCellType)
MWMPlacePageCellTypeCoordinate,
MWMPlacePageCellTypeBookmark,
MWMPlacePageCellTypeEditButton,
MWMPlacePageCellTypeReportButton,
MWMPlacePageCellTypeCategory,
MWMPlacePageCellTypeName,
MWMPlacePageCellTypeStreet,

View file

@ -152,10 +152,12 @@ void initFieldsMap()
case MWMPlacePageCellTypeCoordinate:
return [self coordinate];
case MWMPlacePageCellTypeBookmark:
return m_info.IsBookmark() ? @"haveValue" : nil;
return m_info.IsBookmark() ? @"" : nil;
case MWMPlacePageCellTypeEditButton:
// TODO(Vlad): It's a really strange way to "display" cell if returned text is not nil.
return m_info.IsEditable() ? @"Refactor Me" : nil;
return m_info.IsEditable() ? @"" : nil;
case MWMPlacePageCellTypeReportButton:
return m_info.IsFeature() ? @"" : nil;
default:
{
auto const it = m_values.find(cellType);

View file

@ -25,6 +25,7 @@
- (void)routeTo;
- (void)share;
- (void)editPlace;
- (void)reportProblem;
- (void)addBookmark;
- (void)removeBookmark;
- (void)apiBack;

View file

@ -246,6 +246,11 @@ extern NSString * const kBookmarksChangedNotification;
[(MapViewController *)self.ownerViewController openEditor];
}
- (void)reportProblem
{
[static_cast<MapViewController *>(self.ownerViewController) showReportController];
}
- (void)addBookmark
{
[[Statistics instance] logEvent:kStatEventName(kStatPlacePage, kStatBookmarks)

View file

@ -0,0 +1,8 @@
#import "MWMTableViewController.h"
@interface MWMReportBaseController : MWMTableViewController
- (void)configNavBar NS_REQUIRES_SUPER;
- (void)send NS_REQUIRES_SUPER;
@end

View file

@ -0,0 +1,16 @@
#import "MWMReportBaseController.h"
@implementation MWMReportBaseController
- (void)configNavBar
{
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:L(@"send")
style:UIBarButtonItemStylePlain target:self action:@selector(send)];
}
- (void)send
{
[self.navigationController popToRootViewControllerAnimated:YES];
}
@end

View file

@ -0,0 +1,5 @@
#import "MWMReportBaseController.h"
@interface MWMReportProblemController : MWMReportBaseController
@end

View file

@ -0,0 +1,40 @@
#import "MWMReportProblemController.h"
#import "SelectableCell.h"
@interface MWMReportProblemController ()
@property (weak, nonatomic) IBOutlet SelectableCell * placeDoesntExistCell;
@property (nonatomic) BOOL isCellSelected;
@end
@implementation MWMReportProblemController
- (void)viewDidLoad
{
[super viewDidLoad];
[self configNavBar];
}
- (void)configNavBar
{
[super configNavBar];
self.title = L(@"problem");
}
#pragma mark - UITableView
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
[cell setSelected:NO animated:YES];
if (indexPath.row > 0)
return;
self.isCellSelected = !self.isCellSelected;
self.placeDoesntExistCell.accessoryType = self.isCellSelected ? UITableViewCellAccessoryCheckmark :
UITableViewCellAccessoryNone;
}
@end

View file

@ -0,0 +1,5 @@
#import "MWMReportBaseController.h"
@interface MWMReportProblemExtendedController : MWMReportBaseController
@end

View file

@ -0,0 +1,31 @@
#import "MWMReportProblemExtendedController.h"
@interface MWMReportProblemExtendedController ()
@property (weak, nonatomic) IBOutlet UITextView * textView;
@end
@implementation MWMReportProblemExtendedController
- (void)viewDidLoad
{
[super viewDidLoad];
[self configNavBar];
}
- (void)configNavBar
{
[super configNavBar];
self.title = L(@"other");
}
#pragma mark - UITableView
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
NSAssert(section == 0, @"Invalid section!");
return L(@"report_problem_extended_description");
}
@end

View file

@ -33,6 +33,7 @@ namespace search { struct AddressInfo; }
- (void)openBookmarks;
- (void)openMapsDownloader;
- (void)openEditor;
- (void)showReportController;
- (void)refreshAd;

View file

@ -71,6 +71,7 @@ NSString * const kDownloaderSegue = @"Map2MapDownloaderSegue";
NSString * const kMigrationSegue = @"Map2MigrationSegue";
NSString * const kEditorSegue = @"Map2EditorSegue";
NSString * const kUDViralAlertWasShown = @"ViralAlertWasShown";
NSString * const kReportSegue = @"Map2ReportSegue";
} // namespace
@interface NSValueWrapper : NSObject
@ -551,10 +552,14 @@ NSString * const kUDViralAlertWasShown = @"ViralAlertWasShown";
- (void)openEditor
{
[[Statistics instance] logEvent:kStatEventName(kStatPlacePage, kStatEdit)];
[self performSegueWithIdentifier:kEditorSegue sender:self.controlsManager.placePageEntity];
}
- (void)showReportController
{
[self performSegueWithIdentifier:kReportSegue sender:nil];
}
- (void)processMyPositionStateModeEvent:(location::EMyPositionMode)mode
{
[m_predictor setMode:mode];

View file

@ -656,6 +656,12 @@
F607C1891C032A8800B53A87 /* resources-hdpi_dark in Resources */ = {isa = PBXBuildFile; fileRef = F607C1841C032A8800B53A87 /* resources-hdpi_dark */; };
F607C18A1C032A8800B53A87 /* resources-hdpi_dark in Resources */ = {isa = PBXBuildFile; fileRef = F607C1841C032A8800B53A87 /* resources-hdpi_dark */; };
F607C18E1C047FDC00B53A87 /* MWMSegue.mm in Sources */ = {isa = PBXBuildFile; fileRef = F607C18D1C047FDC00B53A87 /* MWMSegue.mm */; };
F60F02E11C904E08003A0AF6 /* MWMReportProblemController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E01C904E08003A0AF6 /* MWMReportProblemController.mm */; };
F60F02E41C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E31C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm */; };
F60F02E51C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E31C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm */; };
F60F02E61C904E86003A0AF6 /* MWMReportProblemController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E01C904E08003A0AF6 /* MWMReportProblemController.mm */; };
F60F02E91C904F40003A0AF6 /* MWMReportBaseController.m in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E81C904F40003A0AF6 /* MWMReportBaseController.m */; };
F60F02EA1C904F40003A0AF6 /* MWMReportBaseController.m in Sources */ = {isa = PBXBuildFile; fileRef = F60F02E81C904F40003A0AF6 /* MWMReportBaseController.m */; };
F61579341AC2CE9A0032D8E9 /* MWMRateAlert.mm in Sources */ = {isa = PBXBuildFile; fileRef = F61579331AC2CE9A0032D8E9 /* MWMRateAlert.mm */; };
F61579361AC2CEB60032D8E9 /* MWMRateAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = F61579351AC2CEB60032D8E9 /* MWMRateAlert.xib */; };
F6172FA51BBD5A3E0081D325 /* MWMiPadRoutePreview.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6172FA41BBD5A3E0081D325 /* MWMiPadRoutePreview.xib */; };
@ -1293,6 +1299,12 @@
F607C1841C032A8800B53A87 /* resources-hdpi_dark */ = {isa = PBXFileReference; lastKnownFileType = folder; name = "resources-hdpi_dark"; path = "../../data/resources-hdpi_dark"; sourceTree = "<group>"; };
F607C18C1C047FDC00B53A87 /* MWMSegue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMSegue.h; sourceTree = "<group>"; };
F607C18D1C047FDC00B53A87 /* MWMSegue.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMSegue.mm; sourceTree = "<group>"; };
F60F02DF1C904E08003A0AF6 /* MWMReportProblemController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMReportProblemController.h; sourceTree = "<group>"; };
F60F02E01C904E08003A0AF6 /* MWMReportProblemController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMReportProblemController.mm; sourceTree = "<group>"; };
F60F02E21C904E3E003A0AF6 /* MWMReportProblemExtendedController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMReportProblemExtendedController.h; sourceTree = "<group>"; };
F60F02E31C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMReportProblemExtendedController.mm; sourceTree = "<group>"; };
F60F02E71C904F40003A0AF6 /* MWMReportBaseController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMReportBaseController.h; sourceTree = "<group>"; };
F60F02E81C904F40003A0AF6 /* MWMReportBaseController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMReportBaseController.m; sourceTree = "<group>"; };
F61579321AC2CE9A0032D8E9 /* MWMRateAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMRateAlert.h; sourceTree = "<group>"; };
F61579331AC2CE9A0032D8E9 /* MWMRateAlert.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMRateAlert.mm; sourceTree = "<group>"; };
F61579351AC2CEB60032D8E9 /* MWMRateAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMRateAlert.xib; sourceTree = "<group>"; };
@ -1627,6 +1639,7 @@
080E96DDFE201D6D7F000001 /* Classes */ = {
isa = PBXGroup;
children = (
F60F02DE1C904DE8003A0AF6 /* ReportProblem */,
34479C741C60C6130065D261 /* Framework */,
34CE8A641C7740CF00F4351A /* Storage */,
34ABA61D1C2D514A00FE1BEC /* Input Validators */,
@ -2487,6 +2500,19 @@
name = Segue;
sourceTree = "<group>";
};
F60F02DE1C904DE8003A0AF6 /* ReportProblem */ = {
isa = PBXGroup;
children = (
F60F02E71C904F40003A0AF6 /* MWMReportBaseController.h */,
F60F02E81C904F40003A0AF6 /* MWMReportBaseController.m */,
F60F02DF1C904E08003A0AF6 /* MWMReportProblemController.h */,
F60F02E01C904E08003A0AF6 /* MWMReportProblemController.mm */,
F60F02E21C904E3E003A0AF6 /* MWMReportProblemExtendedController.h */,
F60F02E31C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm */,
);
name = ReportProblem;
sourceTree = "<group>";
};
F613FA741AB330AF002394D4 /* MapViewController */ = {
isa = PBXGroup;
children = (
@ -3446,6 +3472,7 @@
34F9FB8B1C438ADB00F71201 /* MWMStreetEditorViewController.mm in Sources */,
EED10A4511F78D120095FAD4 /* MapViewController.mm in Sources */,
34CCFDD11C21945500F28959 /* MWMPlacePageOpeningHoursDayView.mm in Sources */,
F60F02E41C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm in Sources */,
3445CEAE1C2D9E08006F4226 /* MWMAuthorizationSignupViewController.mm in Sources */,
F61579341AC2CE9A0032D8E9 /* MWMRateAlert.mm in Sources */,
F6BB6CC61BB18C0900DF1DF2 /* MWMRoutePointCell.m in Sources */,
@ -3569,6 +3596,7 @@
34BC72241B0DECAE0012A34B /* MWMMapViewControlsManager.mm in Sources */,
F6B2E61F1C3D5F31005562DF /* MWMNightModeController.mm in Sources */,
F6BD33791B62400E00F2CE18 /* MWMNavigationDashboard.mm in Sources */,
F60F02E91C904F40003A0AF6 /* MWMReportBaseController.m in Sources */,
347FD8891C60B2CE002FB65E /* MWMOpeningHoursTimeSpanTableViewCell.mm in Sources */,
974D041D1977DE430081D0A7 /* LocalNotificationManager.mm in Sources */,
97C98522186AE3CF00AF7E9E /* AppInfo.mm in Sources */,
@ -3594,6 +3622,7 @@
F64F4B6D1B46A51F0081A24A /* MWMDownloaderDialogCell.mm in Sources */,
3491E7CB1C06F1F10042FE24 /* MWMPlacePageButtonCell.mm in Sources */,
97508423199522D300A7457D /* SettingsAndMoreVC.mm in Sources */,
F60F02E11C904E08003A0AF6 /* MWMReportProblemController.mm in Sources */,
341F99D91C6B1165001C67B8 /* MWMMapDownloaderPlaceTableViewCell.mm in Sources */,
341F99D51C6B1165001C67B8 /* MWMMapDownloaderLargeCountryTableViewCell.mm in Sources */,
347FD86F1C60B2CE002FB65E /* MWMOpeningHoursAllDayTableViewCell.mm in Sources */,
@ -3692,6 +3721,7 @@
3492CC131C6DF00F0057D8E8 /* (null) in Sources */,
6741A9D21BF340DE002C974C /* MWMBookmarkDescriptionViewController.mm in Sources */,
6741A9D31BF340DE002C974C /* MWMDownloadMapRequestView.mm in Sources */,
F60F02E61C904E86003A0AF6 /* MWMReportProblemController.mm in Sources */,
3476B8CC1BFDCB6700874594 /* MWMTTSSettingsViewController.mm in Sources */,
6741A9D41BF340DE002C974C /* MWMAlertViewController.mm in Sources */,
34C9BD0A1C6DBCDA000DC38D /* MWMNavigationController.mm in Sources */,
@ -3777,6 +3807,8 @@
34CCFDE11C22A2EF00F28959 /* MWMPlacePageOpeningHoursCell.mm in Sources */,
6741AA0D1BF340DE002C974C /* LocalNotificationManager.mm in Sources */,
347FD88A1C60B2CE002FB65E /* MWMOpeningHoursTimeSpanTableViewCell.mm in Sources */,
F60F02E51C904E3E003A0AF6 /* MWMReportProblemExtendedController.mm in Sources */,
F60F02EA1C904F40003A0AF6 /* MWMReportBaseController.m in Sources */,
6741AA0E1BF340DE002C974C /* AppInfo.mm in Sources */,
6741AA0F1BF340DE002C974C /* MWMSearchHistoryMyPositionCell.mm in Sources */,
6741AA101BF340DE002C974C /* SelectableCell.mm in Sources */,

View file

@ -35,6 +35,7 @@
<segue destination="2fX-ws-Tuc" kind="custom" identifier="Map2AuthorizationSegue" customClass="MWMSegue" id="CJ1-sY-Il4"/>
<segue destination="Lfa-Zp-orR" kind="custom" identifier="Map2EditorSegue" customClass="MWMSegue" id="OEF-kR-jKi"/>
<segue destination="sAj-hs-LjL" kind="custom" identifier="MapToCategorySelectorSegue" customClass="MWMSegue" id="yAJ-jH-Dus"/>
<segue destination="Lgr-ZK-lGB" kind="custom" identifier="Map2ReportSegue" customClass="MWMSegue" id="gCh-Ix-flI"/>
</connections>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="cKg-Q7-bFd" userLabel="First Responder" sceneMemberID="firstResponder"/>
@ -1716,6 +1717,155 @@
</objects>
<point key="canvasLocation" x="1881" y="1224"/>
</scene>
<!--Report Problem Controller-->
<scene sceneID="RAz-lh-lom">
<objects>
<tableViewController id="Lgr-ZK-lGB" customClass="MWMReportProblemController" sceneMemberID="viewController">
<tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" showsSelectionImmediatelyOnTouchBegin="NO" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" id="li8-xE-fzL">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<sections>
<tableViewSection id="gnw-eJ-Ieg">
<cells>
<tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SelectableCell" id="g66-LD-sto" customClass="SelectableCell">
<rect key="frame" x="0.0" y="35" width="600" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="g66-LD-sto" id="5kM-d9-YTL">
<rect key="frame" x="0.0" y="0.0" width="600" height="43"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="Place doesn't exist" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" preferredMaxLayoutWidth="477" translatesAutoresizingMaskIntoConstraints="NO" id="9h0-27-Qdf">
<rect key="frame" x="16" y="11" width="527" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="place_doesnt_exist"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstAttribute="bottomMargin" secondItem="9h0-27-Qdf" secondAttribute="bottom" constant="3.5" id="E6x-dZ-hhU"/>
<constraint firstAttribute="trailingMargin" secondItem="9h0-27-Qdf" secondAttribute="trailing" constant="10" id="aZV-kX-gEm"/>
<constraint firstItem="9h0-27-Qdf" firstAttribute="leading" secondItem="5kM-d9-YTL" secondAttribute="leadingMargin" constant="8" id="e6j-E8-7Sr"/>
<constraint firstItem="9h0-27-Qdf" firstAttribute="top" secondItem="5kM-d9-YTL" secondAttribute="topMargin" constant="3" id="fdM-4J-HXY"/>
</constraints>
</tableViewCellContentView>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="titleLabel" destination="9h0-27-Qdf" id="H0n-Kf-h4a"/>
</connections>
</tableViewCell>
<tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LinkCell" id="EX5-r9-xqT" customClass="LinkCell">
<rect key="frame" x="0.0" y="79" width="600" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EX5-r9-xqT" id="nQT-aY-P4o">
<rect key="frame" x="0.0" y="0.0" width="567" height="43"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Other" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" preferredMaxLayoutWidth="483" translatesAutoresizingMaskIntoConstraints="NO" id="Tyx-T5-jhZ">
<rect key="frame" x="16" y="11" width="533" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="other"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstItem="Tyx-T5-jhZ" firstAttribute="leading" secondItem="nQT-aY-P4o" secondAttribute="leadingMargin" constant="8" id="NBC-ht-mZv"/>
<constraint firstItem="Tyx-T5-jhZ" firstAttribute="top" secondItem="nQT-aY-P4o" secondAttribute="topMargin" constant="3" id="Zup-2W-vrv"/>
<constraint firstAttribute="trailingMargin" secondItem="Tyx-T5-jhZ" secondAttribute="trailing" constant="10" id="lbh-4g-faW"/>
<constraint firstAttribute="bottomMargin" secondItem="Tyx-T5-jhZ" secondAttribute="bottom" constant="3.5" id="ynn-p5-DoB"/>
</constraints>
</tableViewCellContentView>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="titleLabel" destination="Tyx-T5-jhZ" id="ybn-sU-9Cm"/>
<segue destination="Ajb-eT-8P5" kind="custom" identifier="2ExtendedReportSegue" customClass="MWMSegue" id="Gb3-ux-wqf"/>
</connections>
</tableViewCell>
</cells>
</tableViewSection>
</sections>
<connections>
<outlet property="dataSource" destination="Lgr-ZK-lGB" id="thy-3c-4iP"/>
<outlet property="delegate" destination="Lgr-ZK-lGB" id="kA1-Uj-n5M"/>
</connections>
</tableView>
<connections>
<outlet property="placeDoesntExistCell" destination="g66-LD-sto" id="8A7-uC-72C"/>
</connections>
</tableViewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="HsP-Mh-TdZ" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="1866" y="1978"/>
</scene>
<!--Report Problem Extended Controller-->
<scene sceneID="MQs-9R-SZd">
<objects>
<tableViewController id="Ajb-eT-8P5" customClass="MWMReportProblemExtendedController" sceneMemberID="viewController">
<tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" keyboardDismissMode="onDrag" dataMode="static" style="grouped" separatorStyle="default" showsSelectionImmediatelyOnTouchBegin="NO" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" id="Urf-xt-sj3">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<sections>
<tableViewSection id="M33-4h-2SR">
<cells>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="128" id="Wg5-bm-vvK">
<rect key="frame" x="0.0" y="35" width="600" height="128"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Wg5-bm-vvK" id="2nm-b7-p6S">
<rect key="frame" x="0.0" y="0.0" width="600" height="127"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="6cE-dD-8Es" customClass="MWMTextView">
<rect key="frame" x="0.0" y="0.0" width="600" height="127"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="localizedPlaceholder" value="detailed_problem_description"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
</userDefinedRuntimeAttributes>
</textView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="6cE-dD-8Es" secondAttribute="trailing" id="46N-cT-757"/>
<constraint firstItem="6cE-dD-8Es" firstAttribute="leading" secondItem="2nm-b7-p6S" secondAttribute="leading" id="EcU-2x-yiV"/>
<constraint firstAttribute="bottom" secondItem="6cE-dD-8Es" secondAttribute="bottom" id="ijn-qI-Zcj"/>
<constraint firstItem="6cE-dD-8Es" firstAttribute="top" secondItem="2nm-b7-p6S" secondAttribute="top" id="mS6-LW-Exq"/>
</constraints>
</tableViewCellContentView>
</tableViewCell>
</cells>
</tableViewSection>
</sections>
<connections>
<outlet property="dataSource" destination="Ajb-eT-8P5" id="tKq-fG-sly"/>
<outlet property="delegate" destination="Ajb-eT-8P5" id="x6s-Q1-1pZ"/>
</connections>
</tableView>
<connections>
<outlet property="textView" destination="6cE-dD-8Es" id="j33-dl-6So"/>
</connections>
</tableViewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="vnV-2b-u0g" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="2584" y="1978"/>
</scene>
<!--Whats New Controller-->
<scene sceneID="MYd-bd-VsQ">
<objects>
@ -3002,8 +3152,8 @@ the world. Join us!</string>
<image name="separator_image" width="1" height="1"/>
</resources>
<inferredMetricsTieBreakers>
<segue reference="8Pk-Zz-Tks"/>
<segue reference="fuS-6s-TH4"/>
<segue reference="yAJ-jH-Dus"/>
<segue reference="OEF-kR-jKi"/>
<segue reference="Z0Z-aU-Vrq"/>
<segue reference="w48-2Y-VXA"/>
</inferredMetricsTieBreakers>